SubhanUllah Posted September 20, 2022 Report Posted September 20, 2022 thelist = [1, "A", 2, "B"] #Printing the length print(len(thelist)) #OUTPUT 4 Although it will be awkward with a very long list, of course, as you can see, you can always still get the same result doing something crazy like… print(len([1, "A", 2, "B"] #OUTPUT 4 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.