Documentação

This commit is contained in:
Luiz Otávio
2022-10-27 12:53:41 -03:00
parent 4bf700a271
commit 9afcf1a973

9
aula33.py Normal file
View File

@@ -0,0 +1,9 @@
"""
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))