Skip to content

Instantly share code, notes, and snippets.

@rok-povsic
Created July 14, 2016 17:19
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 rok-povsic/23e66d404851670b5512f0ddcfe3dfe6 to your computer and use it in GitHub Desktop.
Save rok-povsic/23e66d404851670b5512f0ddcfe3dfe6 to your computer and use it in GitHub Desktop.
uporabniki = ["Janez", "Petra", "Mojca"]
print "Uporabnik na mestu st. 1:", uporabniki[1]
for uporabnik in uporabniki:
print "Uporabnik je:"
print uporabnik
for i in range(0, 10):
if i == 3:
print "i je enako 3"
print i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment