Loops in Python – HackerRank Solution

Problem: Loops in python

Loops in Python

Task
The provided code stub reads and integer,n , from STDIN. For all non-negative integers i<n, print i^2.

Example

The list of non-negative integers that are less than n=3 is [0,1,2] is . Print the square of each number on a separate line.

0
1
4

Input Format

The first and only line contains the integer, n.

Constraints

Output Format

Print n lines, one corresponding to each i.

Sample Input 0

5

Sample Output 0

0
1
4
9
16

Code:

if __name__ == '__main__':
    n = int(input())
    for i in range(n):
        print(i*i)

Disclaimer: This problem is originally created and published by HackerRank, we only provide solutions to this problem. Hence, doesn’t guarantee the truthfulness of the problem. This is only for information purposes.

Leave a Comment