Skip to content

Instantly share code, notes, and snippets.

@hazelement
Last active September 3, 2018 22:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hazelement/01845a0288ed9409ae632d0d44dac8de to your computer and use it in GitHub Desktop.
Save hazelement/01845a0288ed9409ae632d0d44dac8de to your computer and use it in GitHub Desktop.
Python iterrate
# pandas dataframe
for index, row in df.iterrows():
print row['c1'], row['c2']
# dictionary
for key, value in d.iteritems():
print(key, value)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment