Computer Science, asked by ramsmedicine, 1 month ago

Write a python program to accept a number and display its square

pls tell me this answer

Answers

Answered by shivansht2005
2

Please refer to the given attachment:

Attachments:
Answered by Anonymous
6

Required programme :-

n = eval(input("Enter a number"))

print (n* * 2)

[ * * is an operator for power ]

Similar questions