0
How to convert the input () to list,if i can receive the input () directely a list show me whow
2 Antworten
+ 4
Ast = input().split()
print(Ast)
its much more better when you try to figure this out yourself and make lots of test on it, you will understand much better that way
0
Thinks