You answeredJUST NOW
Python
STDIN
[1, 2, 3]
Expected STDOUT
1
2
3
2
3
Your STDOUT
1
2
3
2
3
STDIN
["one", "two", "three"]
Expected STDOUT
one
two
three
two
three
Your STDOUT
one
two
three
two
three
STDIN
[]
Expected STDOUT
Your STDOUT
STDIN
[1]
Expected STDOUT
1
Your STDOUT
1
STDIN
["a", "b", "c", "d", "e", "f", "g"]
Expected STDOUT
a
b
c
d
e
f
g
b
c
d
e
f
g
Your STDOUT
a
b
c
d
e
f
g
b
c
d
e
f
g
Instructor solution
Collections in Python Presentation (page 5)
By Alec Kretch (Aug 6, 2023)
You may exit out of this review and return later without penalty.