R3
Size: a a a
R3
БГ
K
R3
R3
БГ
БГ
A
n
R3
БГ
py3
l = [1,2,3,4,5]
print(*map(print, l))
1
2
3
4
5
None None None None None
A
python3
def voidfunc(arg):
foo=arg
lst = [1,2,3,4,5,6,7]
l = map(voidfunc,lst)
print(*l)
None None None None None None None
l
Python3
date = '2020-03-04'
y, m, d = date.split('-')
new_date = r'/'.join([d, m, y])
print(new_date)
04/03/2020
БГ
l
ИН
ИН
ИН
R3