6 lines
177 B
Python
6 lines
177 B
Python
if __name__ == '__main__':
|
|
text = "Bonjour"
|
|
# Ne devrait rien afficher puisque la chaîne ne correspond pas
|
|
if text == "bonjouR":
|
|
print("Bien le bonjour !")
|