G
geezle86
The source code:
for i in range(8):
n = input()
When we run it, consider the numbers below is the user input,
1
2
3
4
5
6
(and so forth)
my question, can i make it in just a single line like,
1 2 3 4 5 6 (and so forth)
Can I?
for i in range(8):
n = input()
When we run it, consider the numbers below is the user input,
1
2
3
4
5
6
(and so forth)
my question, can i make it in just a single line like,
1 2 3 4 5 6 (and so forth)
Can I?