Posts by Eduardo Fonseca • 36 points
1 post
-
2
votes1
answer3340
viewsA: Python: Unsupported error operand type(s) for /: tuple and 'int'
One problem with your code is that you are manipulating tuples, when in fact you would like to manipulate whole numbers that are part of these tuples. The problem comes down to accessing data in…