print("Entrez une tablature à plusieurs voix ou return") tab=input() if tab=="" : print("Entrez un ton") tona=input() print("Entrez un mode") mod=input() tab=gamme(tona,mod) tab="v1"+tab+"v2"+tab print(tab) tabpoly=voixpoly(tab) nvoix=tabpoly[0] print("nombre de voix",nvoix) poly=tabpoly choix="" #choix="1234" if choix != "1234" : print("Tapez md pour la main droite ou mg pour la main gauche ou un ensemble de voix") choix=input() if choix=="md" : poly[0]=1 elif choix=="mg" : poly[1]=tabpoly[2] poly[0]=1 elif nvoix==3 : poly[0]=2 if choix=="1 3" : poly[2]=tabpoly[3] elif choix=="2 3" : poly[1]=tabpoly[3] elif poly[0]==4 : poly[0]=2 if choix=="1 4" : poly[2]=tabpoly[4] elif choix=="2 4" : poly[1]=tabpoly[4] elif choix=="3 4" : poly[1]=tabpoly[3] poly[2]=tabpoly[4] elif choix=="1 2 3" : poly[0]=3 elif choix=="1 2 4" : poly[0]=3 poly[3]=tabpoly[4] elif choix=="2 3 4" : poly[0]=3 poly[1]=tabpoly[3] poly[3]=tabpoly[4] else : poly=tabpoly nvoix=poly[0] nvoix=int(nvoix)