A função print, argumentos e quebra de linha

This commit is contained in:
Luiz Otávio
2022-10-24 12:02:05 -03:00
parent 66f8b729f3
commit 708fcc3a78
2 changed files with 6 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
{
"window.zoomLevel": 1,
"window.zoomLevel": 4,
"workbench.startupEditor": "none",
"explorer.compactFolders": false,
"editor.fontSize": 24,

5
aula2.py Normal file
View File

@@ -0,0 +1,5 @@
# \r\n -> CRLF
# \n -> LF
print(12, 34, 1011, sep="", end='#')
print(56, 78, sep='-', end='\n')
print(9, 10, sep='-', end='\n')