To read a value in python we need ________ function and to print a value we need _______ function.
Answers
Answered by
2
Python user input from the keyboard can be read using the input() built-in function. The input from the user is read as a string and can be assigned to a variable. After entering the value from the keyboard, we have to press the “Enter” button. Then the input() function reads the value entered by the user.
Answered by
2
To read a value in python we need input() function and to print a value we need print() function.
Similar questions