0
if i input this charactor: i learn programming: then click enter
result : i learn programming plz help
1 ответ
+ 2
do you want to split the input?
if you want to do that nearly every language has a split() function and you can use it like:
# python example
i = input()
for w in i.split(" "):
print(w)