I tried to count the character combine in the list. In my script, I can count the tuples, but I don't know how I can count the total of characters in my list.
This is the script I have used.
def count(num):
character = 0
for i in num:
character += 1
return character
count ('1234','1234',1234')
my answer is 3
I want to show 12. How can I do that?