From a9726cf034636cd03dc966cc9c54c316e65e83e4 Mon Sep 17 00:00:00 2001 From: Yesen Date: Mon, 23 Oct 2023 15:35:16 +0300 Subject: [PATCH] new info --- docs/python/defolt_python.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/python/defolt_python.md b/docs/python/defolt_python.md index 0d17637..3b15146 100644 --- a/docs/python/defolt_python.md +++ b/docs/python/defolt_python.md @@ -25,6 +25,11 @@ __\n__ - перенос фразы на след. строку __\t__ - заменяет пробел в строке __""" _ """__ - игнорируют любые символы внутри +- из списка подряд цифры через пробел +```python +L = [1, 2, 3, 4, 5] +print(*L) +``` ## Строки в Python