From 708fcc3a78995b66b1f830874a9fb7b7c3470bf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luiz=20Ot=C3=A1vio?= Date: Mon, 24 Oct 2022 12:02:05 -0300 Subject: [PATCH] =?UTF-8?q?A=20fun=C3=A7=C3=A3o=20print,=20argumentos=20e?= =?UTF-8?q?=20quebra=20de=20linha?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 2 +- aula2.py | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 aula2.py diff --git a/.vscode/settings.json b/.vscode/settings.json index 248a189..3eca672 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,5 @@ { - "window.zoomLevel": 1, + "window.zoomLevel": 4, "workbench.startupEditor": "none", "explorer.compactFolders": false, "editor.fontSize": 24, diff --git a/aula2.py b/aula2.py new file mode 100644 index 0000000..b6b21b8 --- /dev/null +++ b/aula2.py @@ -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')