# List derivation
l1 = [i for i in range(1, 101)]
print(l1)
l2 = [i ** 2 for i in range(1, 11)]
print(l2)
l3 = [f'{
i} Number ' for i in range(1, 11)]
print(l3)
l4 = [i for i in range(1, 21) if i != 18]
print(l4)
# Through the list test Build a new list , Not included 4
test = [[5, 6, 9, 4], [4, 7, 8, 10]]
new = [j for i in test for j in i if j != 4]
print(new)
# 100 Can be 7 Divisible number
l5 = [i for i in range(1, 101) if i % 7 == 0]
print(l5)