Salut!
J’ai jeter un coups d’oeil sur le site de Python, et j’ai vu ca:
1 2 3 4 5 6 7 8 9 10 | # Python 3: Simple output (with Unicode) >>> print("Hello, I'm Python!") Hello, I'm Python! # Input, assignment >>> name = input('What is your name?\n') >>> print('Hi, %s.' % name) # <--!! What is your name? Python Hi, Python. |
Donc, je suis perdu… L’usage du %
sur les string est deprecated
, or what?
Mathieu
+0
-0