How Can I Measure the Length of a String

With Python, a string is measured through the len() function.

The code to measure a string is shown below:

The line above measures the name, Geotashfeen, and it will return a value of 11.

To measure the length of a variable,
simply enter in the variable into the len() function after it is initialized.

The code to do this is shown below:

This returns a value of 11.