python – 如何将元组中的每个元素除以int

我想用int分割元组,但我不知道怎么做!

如果你知道的话

请帮我!

谢谢.

最佳答案 也许你可以尝试,如果是一个数字元组:

numberstuple = (5,1,7,9,6,3)
divisor= 2.0
divisornodecimals = 2

value = map(lambda x: x/divisor, numberstuple)
>>>[2.5, 0.5, 3.5, 4.5, 3.0, 1.5]
valuewithout_decimals = map(lambda x: x/divisornodecimals, numberstuple)
>>>[2, 0, 3, 4, 3, 1]

要么

value = [x/divisor for x in numberstuple]
点赞