Sort by

recency

|

1770 Discussions

|

  • + 0 comments

    mistake

  • + 0 comments

    n = int(input()) for i in range(n): if(1

  • + 0 comments

    Understanding the logic behind iterative outputs, like squaring integers is essential, much like refining scripts for Real Estate Cold Calling, where each step builds precision and relevance.

  • + 0 comments

    if 1<= n <= 20 : i = 0 for i in range(n) : if i <= n : print(i * i) i = i+1

  • + 0 comments

    if name == 'main': n = int(input()) for i in range(0, n): print(i**2)

    Or you can Write for i in range(n): print(i*i)