If you want to run a loop that repeats if a count variable is less than 50, what code should your loop header contain?

Automate Cybersecurity Tasks with Python | Weekly challenge 1 Quiz | 

If you want to run a loop that repeats if a count variable is less than 50, what code should your loop header contain?

  • while count < 50:
  • while count == 50:
  • print(50)
  • count = count + 50

 

Leave a Comment