Write a python program to accept a number and display its square
pls tell me this answer
Answers
Answered by
2
Please refer to the given attachment:
Attachments:
Answered by
6
Required programme :-
n = eval(input("Enter a number"))
print (n* * 2)
[ * * is an operator for power ]
Similar questions