summaryrefslogtreecommitdiffhomepage
path: root/ru-ru
diff options
context:
space:
mode:
authorChashmeet Singh <chashmeetsingh@gmail.com>2015-10-05 15:46:46 +0530
committerChashmeet Singh <chashmeetsingh@gmail.com>2015-10-05 15:46:46 +0530
commit41d49490ba093a74d0d691538b8342682feb997f (patch)
tree82d335bd82002cba32f175cf6a9210733cc109bb /ru-ru
parentad4d6f3c1e9dfba3933651116535d590a17092df (diff)
Update python-ru.html.markdown
Diffstat (limited to 'ru-ru')
-rw-r--r--ru-ru/python-ru.html.markdown9
1 files changed, 9 insertions, 0 deletions
diff --git a/ru-ru/python-ru.html.markdown b/ru-ru/python-ru.html.markdown
index a0e2b474..162675bb 100644
--- a/ru-ru/python-ru.html.markdown
+++ b/ru-ru/python-ru.html.markdown
@@ -238,6 +238,15 @@ d, e, f = 4, 5, 6
# Обратите внимание, как легко поменять местами значения двух переменных
e, d = d, e # теперь d == 5, а e == 4
+#take input of integers in a single line
+#if input 1 2 3
+input = map(int,raw_input().split()) #integer
+
+input #=>[1, 2, 3]
+
+input = map(str,raw_input().split()) #string
+
+input #=>['1', '2', '3']
# Словари содержат ассоциативные массивы
empty_dict = {}