test.py
· 92 B · Python
Originalformat
test = "yes"
if test == "yes":
print("This is a test.")
else:
print("This is no test.")
| 1 | test = "yes" |
| 2 | |
| 3 | if test == "yes": |
| 4 | print("This is a test.") |
| 5 | else: |
| 6 | print("This is no test.") |