+ 1
How can i make a function in Python 3 - similar to raw_input functin in Python2- that allows me to enter a value and then use?
raw_input
2 odpowiedzi
+ 8
use 'input'
a = input ("Type something": )
print(a) #prints out a string
+ 1
Thanks a lot …………