# [ ] 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 count in range(x):
print(count)
# [ ] using range(x) multiply the numbers 1 through 7
# 1x2x3x4x5x6x7 = 5040
x = 7
count = 1
for count in range
# [ ] 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"]
half_2 = int(len(spell_list[-1::]))
for word in range(half_2):
print(spell_list[word])
# [ ] 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(range(5,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"]
spell_len = len(spell_list)
# find lenght of 1st half (aka - start of 2nd half)
half_1 = int(spell_len[3:5])
for word in range(half_1,spell_len):
print(spell_list[word])
# [ ] 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"]
# [ ] 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
numbers_list = list(range(10,20,2))
print(numbers_list)
# [ ] print numbers 20 to 10 using range (need to countdown)
# Hint: start at 20
number_list = list(range(20,10,-1))
print(number_list)
# [ ] print first and every third word in spell_list
spell_list = ["Tuesday", "Wednesday", "February", "November", "Annual", "Calendar", "Solstice"]
for index in range(0,len(spell_list),3):
print(spell_list[index])
# [ ] complete List of letters program- test with the word "complexity"
word = input("Enter a word: ")
word_len = len(word)
print(word_len)
for word in word_len:
odd_letters = word_len(range(0,100,2))
even_letters = word_len(range(1,100,2))
print(odd_letters)
print(even_letters)
# [ ] fix the error printing odd numbers 1 - 9
#I switched the brackets to paranthesis
for num in range(1,10,2):
print(num)