len(s)

Python offre anche una funzione integrata che consente di ottenere la lunghezza di una stringa (o di un altro contenitore, che tratteremo più avanti nel corso). Possiamo utilizzare len() per ottenere la lunghezza di una stringa:
a = 'some random string'
print(len(a))
Questo programma stampa 18.

Sfida

Dati 2 stringhe, stampa quella più corta nella prima riga seguita da quella più lunga nella seconda riga.
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