# [ ] review and run example
for count in range(10):
print(count)
# review and run example
digits = range(10)
print("digits =", list(digits), "\n")
for count in digits:
print(count)
# [ ] review and run example
sub_total = 0
for item in range(10):
sub_total += item
print("sub_total:", sub_total)
print("Total =", sub_total)
# [ ] review and run example
# print the first half of a spelling list
spell_list = ["Tuesday", "Wednesday", "February", "November", "Annual", "Calendar", "Solstice"]
# find length of 1st half of list (must be int)
half_1 = int(len(spell_list)/2)
for word in range(half_1):
print(spell_list[word])
# [ ] for x = 6, use range(x) to print the numbers 1 through 6
x = 6
for x in range(1, 7):
print(x)
# [ ] using range(x) multiply the numbers 1 through 7
# 1x2x3x4x5x6x7 = 5040
total = 1
for x in range(1, 8):
total*=x
print(total)
# [ ] print the second half of a spelling list using a range(stop) loop to iterate the list
spell_list = ["Wednesday", "Tuesday", "February", "November", "Annual", "Calendar", "Solstice"]
for letter in range(4, 7):
print(spell_list[letter])
# [ ] review and run example
for count in range(5,10):
print(count)
# [ ] review and run example
sub_total = 0
temp = 0
for item in range(5, 11):
temp = sub_total
sub_total += item
print("sub_total:", temp, "+", item, "=",sub_total)
print("Total =", sub_total)
# [ ] review and run example
spell_list = ["Tuesday", "Wednesday", "February", "November", "Annual", "Calendar", "Solstice"]
# find length list
spell_len = len(spell_list)
# find lenght of 1st half (aka - start of 2nd half)
half_1 = int(spell_len/2)
# print 2nd half list
for word in range(half_1,spell_len):
print(spell_list[word])
# [ ] using range(start,stop), .append() the numbers 5 to 15 to the list: five_fifteen
# [ ] print list five_fifteen
five_fifteen = []
five_fifteen.append(5)
five_fifteen.append(15)
print(five_fifteen)
# [ ] using range(start,stop) - print the 3rd, 4th and 5th words in spell_list
# output should include "February", "November", "Annual"
spell_list = ["Tuesday", "Wednesday", "February", "November", "Annual", "Calendar", "Solstice"]
for word in range(0, 8):
print(spell_list[2:5])
break
# [ ] using code find the index of "Annual" in spell_list
# [ ] using range, print the spell_list including "Annual" to end of list
spell_list = ["Tuesday", "Wednesday", "February", "November", "Annual", "Calendar", "Solstice"]
spell_list.append("Annual")
print(spell_list)
# [ ] review and run example
for count in range(25,101,25):
print(count)
# [ ] review and run example
sub_total = 0
temp = 0
for item in range(25,46,5):
temp = sub_total
sub_total += item
print("sub_total:", temp, "+", item, "=",sub_total)
print("Total =", sub_total)
# [ ] review and run example printing the 1st and then every other word in spell_list
spell_list = ["Tuesday", "Wednesday", "February", "November", "Annual", "Calendar", "Solstice"]
for index in range(0,len(spell_list),2):
print(spell_list[index])
# [ ] review and run example casting range to list
odd_list = list(range(1,20,2))
print(odd_list)
# [ ] print numbers 10 to 20 by 2's using range
for numbers in range(10, 22, 2):
print(numbers)
# [ ] print numbers 20 to 10 using range (need to countdown)
# Hint: start at 20
for numbers in range(20, 9, -1):
print(numbers)
# [ ] print first and every third word in spell_list
spell_list = ["Tuesday", "Wednesday", "February", "November", "Annual", "Calendar", "Solstice"]
print(spell_list[0:7:3])
# [ ] complete List of letters program- test with the word "complexity"
word = input("enter a word")
odd_letters = []
even_letters = []
for odd in range(0, len(word), 2):
odd_letters.append(word[odd])
for even in range(1, len(word), 2):
even_letters.append(word[even])
print(odd_letters)
print(even_letters)
# [ ] fix the error printing odd numbers 1 - 9
for num in range(1,10,2):
print(num)