my_list= [1,2,3,4,5,6,7,8,9,10]
count=0
add=0
for items in my_list:
count+=1
add+=items
print (f'the count of the list is {count} and the total sum is {add}')
for i in range(0 ,100, 2):
print(i)
print(list(range(0 ,100, -1)))
print(int("0101", 2 ))
sel= 'aaryashkc'