Параметры по умолчанию Python зависят от других параметров

def func(n=5.0, delta=None):  # other ways are not supported
     if delta is None:
         delta = n/10
Shy-ny Star-ling