Home > database >  I'm using Python3.10.7, and I can't get the output of len()
I'm using Python3.10.7, and I can't get the output of len()

Time:10-21

names = ['Bobafit', 'Darth Vader', 'The Emperor'] len(names)

#its a simple list, but when I run it in the terminal, I get nothing.

CodePudding user response:

names = ['Bobafit', 'Darth Vader', 'The Emperor']
print(len(names))
  • Related