Skip to content

Instantly share code, notes, and snippets.

@chicagowebmanagement
Created March 28, 2019 00:26
Show Gist options
  • Save chicagowebmanagement/b0db1a567e84c0326f15110ea532320e to your computer and use it in GitHub Desktop.
Save chicagowebmanagement/b0db1a567e84c0326f15110ea532320e to your computer and use it in GitHub Desktop.
Print every character in the string "Camus".
#Print every character in the string "Camus".
x="Camus"
for i in x:
print(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment