+ 1

Can someone do this code in 20 letters or little more? -_- plzz help

lines= str(input()).split(" "); print(lines)

16th Apr 2020, 12:45 PM
Bibek
Bibek - avatar
2 Respostas
+ 3
Input does not need to be converted to str(), as all that comes from the input() function is already string. You can also print this in the same line. There is no semicolon needed at the end of a line.
16th Apr 2020, 3:15 PM
Lothar
Lothar - avatar
+ 1
This is the minimum code print(input().split())
16th Apr 2020, 3:22 PM
abderrahim sallami
abderrahim sallami - avatar