Study

Match the Python

  •   0%
  •  0     0     0

  • What's the Python?
    if x = 50:
    if x == 50:
    if x = 50 { }
    if x? 50?
  • What's the Python?
    say("Hello")
    print("Hello")
    Console.WriteLine("Hello")
    printf("Hello");
  • What's the Python?
    repeat 10 times:
    for i in range(10):
    for (i = 0; i < 10; i++) {
    for i in 10:
  • What's the Python?
    while False:
    while something = True {
    update(True)
    while True:
  • What's the Python?
    10 < timer
    event when timer.reaches(10)
    if timer > 10:
    when timer > 10
  • What's the Python?
    self.message
    return message
    send(message)
    self.send(message)
  • What's the Python?
    wait.time(1)
    time.sleep(1)
    time.wait(1)
    sleepy_time(1)
  • What's the Python?
    x += 10
    x + 10
    x 10
    x = 10