+ 1
Can someone do this code in 20 letters or little more? -_- plzz help
lines= str(input()).split(" "); print(lines)
2 Réponses
+ 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.
+ 1
This is the minimum code
print(input().split())