placeholder image to represent content

MS Python 1

Quiz by Suzanne Lassacher

Our brand new solo games combine with your quiz, on the same screen

Correct quiz answers unlock more play!

New Quizalize solo game modes
9 questions
Show answers
  • Q1
    A tuple is
    mutable
    immutable or unchangeable or cannot be changed
    changeable
    30s
  • Q2
    The notation or symbol used for lists is
    ( )
    :
    { }
    [ ]
    30s
  • Q3
    A dictionary is made up of
    letters
    combinations
    key/value pairs
    30s
  • Q4
    How would you capitalize the string msg1 = "tampa" ?
    msg1.capitalize()
    msg1.upper()
    30s
  • Q5
    What notation is used for a dictionary - i.e. what symbol do you use for a dictionary?
    ( )
    [ ]
    { }
    30s
  • Q6
    How would you convert the string chant = "go red! go gold!" to all capital letters?
    chant.upper()
    chant.capitalize()
    30s
  • Q7
    How 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
  • Q8
    What would the code look like to print "Hi" five times?
    for i in range(5): print("Hi")
    30s
  • Q9
    an if statement uses what kind of operators
    Boolean
    30s

Teachers give this quiz to your class