Which choice is the most syntactically correct example of the conditional branching?

Advertisement

  • num_people = 5
    if num_people > 10:
    print(“There is a lot of people in the pool.”)
    elif num_people > 4:
    print(“There are some people in the pool.”)
    else:
    print(“There is no one in the pool.”)
  • num_people = 5
    if num_people > 10:
    print(“There is a lot of people in the pool.”)
    if num_people > 4:
    print(“There are some people in the pool.”)
    else:
    print(“There is no one in the pool.”)
  • num_people = 5
    if num_people > 10;
    print(“There is a lot of people in the pool.”)
    elif num_people > 4;
    print(“There are some people in the pool.”)
    else;
    print(“There is no one in the pool.”)
  • if num_people > 10;
    print(“There is a lot of people in the pool.”)
    if num_people > 4;
    print(“There are some people in the pool.”)
    else;
    print(“There is no one in the pool.”)
Join our list

Subscribe to our mailing list and get interesting stuff and updates to your email inbox.

Thank you for subscribing.

Something went wrong.

Leave a Comment


Share via
Join our list

Subscribe to our mailing list and get interesting stuff and updates to your email inbox.

Thank you for subscribing.

Something went wrong.

Send this to a friend