Jump to content

Talk:Python Programming/Variables and Strings/Solutions

Page contents not supported in other languages.
Add topic
From Wikibooks, open books for an open world

x = None while not x:

   try:
       x = int(raw_input())
   except ValueError:
       print 'Invalid Number'

Start a discussion about Python Programming/Variables and Strings/Solutions

Start a discussion