from moduleabc import tablanuance from moduleabc import notes from moduleabc import normaliser print("Entrez une tablature avec rythmes sans nuances") tabla=input() print("Entrez un motif de nuances ou return") nuance=input() if nuance=="" : print("Par exemple 2!ff! 4!ppp! pour jouer la note 2 forte et la note 4 pianissimo") nuance="2!ff! 4!ppp!" tabla=tablanuance(tabla,nuance) print("tabla avec nuances",tabla)