Hi Jonathan.
Cool tricks. When I read it I started thinking about how you can access items in a list and figured this would also be a legit way to count backwards:
count_list = [num for num in range(0,10)]for nums in count_list[::-1]:
print(nums)
Hi Jonathan.
Cool tricks. When I read it I started thinking about how you can access items in a list and figured this would also be a legit way to count backwards:
count_list = [num for num in range(0,10)]for nums in count_list[::-1]:
print(nums)
Written by