Computer Science, asked by SourCandyyy, 6 days ago

please answer the b part

Attachments:

Answers

Answered by aryanpandey5012
0

Answer:

“number ”any no. can there

Explanation:

no will be integer as an input

Answered by arulmozhivarman2004
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