Add files via upload

This commit is contained in:
jeevan650 2026-05-11 10:03:54 +05:30 committed by GitHub
parent 7fd1a60b01
commit 1f0954cf46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

7
list-.py Normal file
View File

@ -0,0 +1,7 @@
prices = [100 ,200 ,300]
prices[0] = 222
print(prices[0])
print(prices[1])
print(prices[2])