Answers for "name, *line = input().split()"

0

name, *line = input().split()

>>> first, *rest = input().split()
>>> print(first)
>>> print(*rest)
'''
given_ input = hello my name is bob
hello
['my', 'name', 'is', 'bob']
'''
Posted by: Guest on July-01-2020
0

name, *line = input().split()

>>> a, b, *rest = range(5)
>>> a, b, rest
(0, 1, [2,3,4])
Posted by: Guest on July-01-2020
0

name, *line = input().split()

>>> a, *middle, c = range(4)
>>> a, middle, c
(0, [1,2], 3)
Posted by: Guest on July-01-2020

Python Answers by Framework

Browse Popular Code Answers by Language