Computer Science, asked by prettygirlsrock013, 2 months ago

To read a value in python we need ________ function and to print a value we need _______ function.

Answers

Answered by jahanvisharma2910200
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 atrs7391
2

To read a value in python we need  input()   function and to print a value we need  print()   function.

Similar questions