partie4_ex88.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

199 Bytes


from math import *

def nb_tours(x):
    k = 0
    while x > pi:
        x = x - 2 * pi
        k = k - 1
    while x <= -pi:
        x = x + 2 * pi
        k = k + 1
    return k