
MS Python 1
Quiz by Suzanne Lassacher
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
9 questions
Show answers
- Q1A tuple ismutableimmutable or unchangeable or cannot be changedchangeable30s
- Q2The notation or symbol used for lists is( ):{ }[ ]30s
- Q3A dictionary is made up ofletterscombinationskey/value pairs30s
- Q4How would you capitalize the string msg1 = "tampa" ?msg1.capitalize()msg1.upper()30s
- Q5What notation is used for a dictionary - i.e. what symbol do you use for a dictionary?( )[ ]{ }30s
- Q6How would you convert the string chant = "go red! go gold!" to all capital letters?chant.upper()chant.capitalize()30s
- Q7How would you remove the comma delimiter from the string p1 = 'z, y, x, w, v, u, t, s, r' and store it in a list ?p1List = p1.split(",")30s
- Q8What would the code look like to print "Hi" five times?for i in range(5): print("Hi")30s
- Q9an if statement uses what kind of operatorsBoolean30s