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