What is the output of the following code?

Automate Cybersecurity Tasks with Python | Weekly challenge 3 Quiz | 

What is the output of the following code?

approved_users = ["bmoreno", "elarson", "tshah", "eraab"]
print(approved_users[1])
  • [“bmoreno”, “elarson”, “tshah”, “eraab”, 1]
  • “elarson”
  • [1, “bmoreno”, “elarson”, “tshah”, “eraab”]
  • “bmoreno”

 

Leave a Comment