You can use the Python built-in functions len(), length of a list code example
Example: len python
mystring = 'Hello'
#Counts the amount of letters in the string
len(mystring) # = 5
#Can also count the number of items in a list
mylist = ['Hello', 'Goodbye', 'Morning']
len(mylist) # = 3