Game Preview

Match the Python

Sorry, you need Baamboozle+ to continue.
  •  English    8     Public
    Can you guess the correct Python code for the Scratch code block you see?
  •   Study   Slideshow
  • What's the Python?
    time.sleep(1)
    sleepy_time(1)
    wait.time(1)
    time.wait(1)
  •  15
  • What's the Python?
    if x? 50?
    if x = 50 { }
    if x = 50:
    if x == 50:
  •  15
  • What's the Python?
    say("Hello")
    printf("Hello");
    print("Hello")
    Console.WriteLine("Hello")
  •  15
  • What's the Python?
    for (i = 0; i < 10; i++) {
    repeat 10 times:
    for i in 10:
    for i in range(10):
  •  15
  • What's the Python?
    while something = True {
    while False:
    while True:
    update(True)
  •  15
  • What's the Python?
    x += 10
    x + 10
    x = 10
    x 10
  •  15
  • What's the Python?
    self.send(message)
    send(message)
    return message
    self.message
  •  15
  • What's the Python?
    if timer > 10:
    when timer > 10
    10 < timer
    event when timer.reaches(10)
  •  15