Question: range(start,stop) 1.# [ ] using range(start,stop), .append() the numbers 5 to 15 to the list: five_fifteen # [ ] print list five_fifteen 2.# [ ]
range(start,stop)
1.# [ ] using range(start,stop), .append() the numbers 5 to 15 to the list: five_fifteen
# [ ] print list five_fifteen
2.# [ ] 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"]
3.# [ ] 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"]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
