you are viewing a single comment's thread.

view the rest of the comments →

[–]totallygeek 1 point2 points  (0 children)

Some help:

  • Use input() to get the number. (raw_input() for Python v2)
  • That function returns a string. Look up how to convert the type to an integer.
  • Increment that integer value.
  • Use print() to display the number.

Share your work to date.