Question #270973

Square to the Next Level

by CodeChum Admin

We've already tried printing out the values of an array in reversed order, right? Today, we shall compute for the squares of all the numbers.


There's already a predefined array/list containing 100 integer values. Loop through each values, compute their squares, and display them.


Output

Multiple lines containing an integer.

4
9
25
10000
49
9
25
9
1
16
.
.
.

Expert's answer

from random import randint


lst = [randint(-100, 100) for i in range(100)]


[print(x*x) for x in lst]
LATEST TUTORIALS
APPROVED BY CLIENTS