diffrent between print and input comment
Answers
Answered by
0
Answer:
Both print and input are built in functions.
print function displays the given message on the screen. For example.
print ("Hello")
gives output as
Hello
Whereas input function accepts given data.
For example,
input = "Enter your age :"
shows
output as
Enter your age
and when you enter your age and press enter
Similar questions