len(s)

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.
Input
Output
short one a very long text here
short one a very long text here
AAABBB AB
AB AAABBB
BB AA
BB AA
 

Constraints

Time limit: 3 seconds

Memory limit: 512 MB

Output limit: 1 MB

To check your solution you need to sign in
Sign in to continue