am
new to Python and it is a little offputting.
So, I'm prepared to invest in a Python book of some sort that will
help me master the language. Does anyone have any recommendations? Or
perhaps tutorials? I have limited programming experience (a little
dabbling in C++).
-Kristiano Ang
~M
e guessing game higher or lower
#originally written by Josh Cogliati, improved by Quique and copied by
Kristiano Ang
number=78
guess=0
while guess != number:
guess=input ("Guess a number:")
if guess > number:
print "Too High"
elif guess < number: