Last active 1728394332

exemple

nithir's Avatar nithir revised this gist 1728394332. Go to revision

1 file changed, 4 insertions

item.py(file created)

@@ -0,0 +1,4 @@
1 + items = ["5", "10", "15"]
2 + items = [int(x) for x in items]
3 + print(items)
4 + # [5, 10, 15]
Newer Older