Algorithm


Problem Name: Python - Loops

Problem Link : https://www.hackerrank.com/challenges/python-loops/problem?isFullScreen=true

In this HackerRank Functions in PYTHON problem solution,

Task
The provided code stub reads and integer, n, from STDIN.

For all non-negative integers i < n, print i**2

Example

n = 3

The list of non-negative integers that are less than n = 3 is [0,1,2]. 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

1 <= n <= 20

Output Format

Print n lines, one corresponding to each i .

Sample Input 0

5

Sample Output 0

0
1
4
9
16

 

 

 

 

Code Examples

#1 Code Example with Python Programming

Code - Python Programming


N=int(input())

for i in range(0,N):

    print (i**2)
Copy The Code & Try With Live Editor
Advertisements

Demonstration


Previous
[Solved] Python: Division in PYTHON solution in Hackerrank
Next
[Solved] Print Function in PYTHON solution in Hackerrank