str + int

Se provi ad aggiungere un intero a un valore testuale, Python si lamenterà dando TypeError: can only concatenate str (not "int") to str.
È possibile aggiungere solo due stringhe tra loro. Quindi, per aggiungere un intero a una stringa, bisogna prima trasformarlo in un testo:
a = 'some random string'
b = 10
c = a + str(b)
print(c)       # some random string10
Quando scriviamo int(input()), stiamo in realtà leggendo un testo e poi lo convertiamo in un intero. È anche possibile fare il contrario convertendo un intero in una stringa con str().

Sfida

Data una stringa e un numero, il tuo compito è stampare quella stringa seguita da un : e dal multiplo di 20 del numero.
Nota: Non usare direttamente la print(). Memorizza il risultato in una variabile res e stampa res alla fine.
Input
Output
Here is a small number 7
Here is a small number: 140
 

Constraints

Time limit: 2 seconds

Memory limit: 512 MB

Output limit: 1 MB

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