Skip to content

Instantly share code, notes, and snippets.

@paulodutra
Created July 25, 2023 13:19
Show Gist options
  • Save paulodutra/365763218441319c4d108afef3083b19 to your computer and use it in GitHub Desktop.
Save paulodutra/365763218441319c4d108afef3083b19 to your computer and use it in GitHub Desktop.
An example using for and array of strings in python
names = ['Maria', 'João', 'Jose', 'Cleiton', 'Pedro']
for name in names:
print(name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment