mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-25 08:13:29 +03:00
Update python-ru.html.markdown
This commit is contained in:
parent
41d49490ba
commit
dca1300e57
@ -238,13 +238,13 @@ d, e, f = 4, 5, 6
|
|||||||
# Обратите внимание, как легко поменять местами значения двух переменных
|
# Обратите внимание, как легко поменять местами значения двух переменных
|
||||||
e, d = d, e # теперь d == 5, а e == 4
|
e, d = d, e # теперь d == 5, а e == 4
|
||||||
|
|
||||||
#take input of integers in a single line
|
#принять ввод чисел в одной строке
|
||||||
#if input 1 2 3
|
#если вход 1 2 3
|
||||||
input = map(int,raw_input().split()) #integer
|
input = map(int,raw_input().split()) #целое число
|
||||||
|
|
||||||
input #=>[1, 2, 3]
|
input #=>[1, 2, 3]
|
||||||
|
|
||||||
input = map(str,raw_input().split()) #string
|
input = map(str,raw_input().split()) #строка
|
||||||
|
|
||||||
input #=>['1', '2', '3']
|
input #=>['1', '2', '3']
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user