9 lines
69 B
Plaintext
9 lines
69 B
Plaintext
list = [1 2 3]
|
|
|
|
for i in list {
|
|
i += 1
|
|
(output i)
|
|
}
|
|
|
|
(output list)
|