0
input(":")
in this piece of code: num=input(":") is the 'input' statement a variable that we created or is it a system command that automatically gets assigned the value of the user's input?
2 Answers
+ 2
It is a built-in function.
Python2: https://docs.python.org/2/library/functions.html#input
Python3: https://docs.python.org/3/library/functions.html#input
+ 1
it is input method which is used to take user input.
it is like cin, scanf etc.