12 lines
191 B
Python
12 lines
191 B
Python
"""
|
|
Fatiamento de strings
|
|
012345678
|
|
Olá mundo
|
|
-987654321
|
|
Fatiamento [i:f:p] [::]
|
|
Obs.: a função len retorna a qtd
|
|
de caracteres da str
|
|
"""
|
|
variavel = 'Olá mundo'
|
|
print(variavel[::-1])
|