Skip to content

Instantly share code, notes, and snippets.

@luigidon
Created September 19, 2016 16:26
Show Gist options
  • Save luigidon/16ef57723595b8475c874384ab97b271 to your computer and use it in GitHub Desktop.
Save luigidon/16ef57723595b8475c874384ab97b271 to your computer and use it in GitHub Desktop.
izbrano_stevilo = "23"
vpisano_stevilo = raw_input("Kaksno stevilo menis, da skrivam?")
if vpisano_stevilo == izbrano_stevilo:
print("Cestitam, uganil si stevilo. To stevilo je:" + izbrano_stevilo)
elif vpisano_stevilo < izbrano_stevilo:
print("Vpisal si premajhno stevilo")
elif vpisano_stevilo > izbrano_stevilo:
print("Vpisal si preveliko stevilo")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment