Prochaine puissance de 2 Python

def next_power_of_2(x):  
    return 1 if x == 0 else 2**(x - 1).bit_length()
Brave Booby