Logo

Programming-Idioms

History of Idiom 120 > diff from v12 to v13

Edit summary for version 13 by :
New Python implementation by user [Trshant]

Version 12

2016-02-17, 04:11:16

Version 13

2016-02-17, 05:53:04

Idiom #120 Read integer from stdin

Read an integer value from the standard input into variable n.

Idiom #120 Read integer from stdin

Read an integer value from the standard input into variable n.

Code
input_var = int(raw_input("Input Promting String: "))
Demo URL
http://pythonfiddle.com/read-integer-from-stdin