我想将元组除以整数。我期望这样的事情:
tuple = (10,20,30,50,80) output = tuple/10 print(output) output = (1,2,3,5,8)
python
python ×1