Python also provides a built-in function that enables getting the length of a string (or another container which we will cover later in the course). We can use len() to get the length of a string:
a = 'some random string'
print(len(a))
This program prints 18.
Challenge
Given 2 strings, print the short one on the first line followed by the longer one on the second line.