Files
cursopython2023/aula33.py
Luiz Otávio 9afcf1a973 Documentação
2022-10-27 12:53:41 -03:00

10 lines
236 B
Python

"""
https://docs.python.org/pt-br/3/library/stdtypes.html
Imutáveis que vimos: str, int, float, bool
"""
string = '1000'
# outra_variavel = f'{string[:3]}ABC{string[4:]}'
# print(string)
# print(outra_variavel)
print(string.zfill(10))