Created
September 19, 2016 16:26
-
-
Save luigidon/16ef57723595b8475c874384ab97b271 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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