Computer Science, asked by hitesh2725, 1 month ago

What is wrong with the following statement?

n=input(“number:”)

sqr=n*n ​

Answers

Answered by AniruddhaBhuiya
1

Answer:

INPUT("Number=") ; n

SQR = n*n

Answered by skullfaceddeath
1

Answer: You have used the wrong quote in the first line.

it is supposed to be :

n = input("Number: ")

sqr = n*n

print(sqr)

please mark as brainliest

Similar questions