Chapter 8 short answer
¡Supera tus tareas y exámenes ahora con Quizwiz!
What does the following code display? numbers = [1, 2, 3, 4, 5, 6, 7] print(numbers[4:6])
[5, 6]
What does the following code display? mystr = 'yes' mystr += 'no' mystr += 'yes' print(mystr)
yesnoyes
What does the following code display? mystr = 'abc' * 3 print(mystr)
abcabcabc
What will the following code display? mystring = 'abcdefg' print(mystring[2:5])
cde
What does the following code display? name = 'joe' print(name.lower()) print(name.upper()) print(name)
joe JOE joe joe