Florent Madelaine
84d386a4ae
renommé : exo1.py -> 1/exo1.py renommé : exo2.py -> 1/exo2.py renommé : exo3.py -> 1/exo3.py renommé : exo3b.py -> 1/exo3b.py renommé : first.py -> 1/first.py renommé : loop.py -> 1/loop.py renommé : math0.py -> 1/math0.py renommé : string0.py -> 1/string0.py nouveau fichier : 2Prog.md
22 lines
529 B
Python
22 lines
529 B
Python
# Ecrire une suitre de commande qui
|
|
# demande votre prénom, votre nom, votre age et affiche
|
|
# "Pierre Valarcher tu as XXX ans"
|
|
|
|
prenom = input("Votre prénom : ")
|
|
nom = input("Votre nom : ")
|
|
age = int(input("Votre age : "))
|
|
|
|
print(prenom, nom, "tu as", age, "ans")
|
|
|
|
phrase = prenom + ' ' + nom + ", tu as " + str(age) + " ans"
|
|
# + est la concaténation sur les chaines de caractères
|
|
|
|
prenom = "Paul"
|
|
print(prenom, nom, "tu as", age, "ans")
|
|
|
|
|
|
if age <= 40:
|
|
print("tu es jeune")
|
|
else:
|
|
print("tu es plutot vieux/vieille")
|