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))
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))