programming-examples/python/List/Python program to generate and print a list except for the first 5 elements, where the values are square of numbers between 1 and 30 (both included).py

7 lines
133 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
def printValues():
l = list()
for i in range(1,21):
l.append(i**2)
print(l[5:])
printValues()