You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for i in range(0, number / 2):
leads to TypeError: 'float' object cannot be interpreted as an integer with python3. for i in range(0, number // 2): should be the solution
The text was updated successfully, but these errors were encountered:
for i in range(0, number / 2):
leads to
TypeError: 'float' object cannot be interpreted as an integer
with python3.for i in range(0, number // 2):
should be the solutionThe text was updated successfully, but these errors were encountered: