please answer the b part
Attachments:
Answers
Answered by
0
Answer:
“number ”any no. can there
Explanation:
no will be integer as an input
Answered by
0
Answer:
The given program is wrong, it will produce error
Explanation:
There's no reserved keyword named integer in Python. 'int' should be used
instead of integer. So, the above program can be rewritten as:
P=int(input("enter no"))
print(P)
Output:
enter no2
2
Similar questions