write a python program to read an integer
Answers
Answered by
0
Answer:
Read Number/Integer from Console
input() function returns a string. int() around the input function, shall typecast the string returned by input() into an integer. Thus n1 and n2 shall have numbers after the user has provided the number in the console.
Answered by
1
Answer:
Read Number/Integer from Console
input() function returns a string. int() around the input function, shall typecast the string returned by input() into an integer. Thus n1 and n2 shall have numbers after the user has provided the number in the console.
Similar questions