Computer Science, asked by SourCandyyy, 6 days ago

Rewrite the python statements after correcting them

Attachments:

Answers

Answered by Anonymous
1

Answer:

A = 2

while( A < 10 )

print(A*A)

A=A+1

Answered by arulmozhivarman2004
0

Answer:

A=2

while A<10:

    print(A*A)

    A+=1

Output:

4

9  

16

25

36

49

64

81

Similar questions