Game Preview

Match the Python

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