mirror of
https://github.com/octocat/Hello-World.git
synced 2026-06-20 18:37:49 +00:00
7 lines
No EOL
99 B
Python
7 lines
No EOL
99 B
Python
prices = [100 ,200 ,300]
|
|
|
|
prices[0] = 222
|
|
|
|
print(prices[0])
|
|
print(prices[1])
|
|
print(prices[2]) |