Last active 1728394332

exemple

item.py Raw
1items = ["5", "10", "15"]
2items = [int(x) for x in items]
3print(items)
4# [5, 10, 15]