Afficher la solution
Cacher la solution
#ETAPE 1 a = int(input("entier: ")) #ETAPE 2 b = str(input("str: ")) #ETAPE 3 c = float(input("float: ")) #ETAPE 4 #Le \n sert à faire un retour à la ligne print('entier a = ', a, '\nstr b = ', b, '\nfloat c = ', c)