RosettaCodeData/Task/Case-sensitivity-of-identifiers/Python/case-sensitivity-of-identifiers.py
2023-07-01 13:44:08 -04:00

5 lines
106 B
Python

dog = 'Benjamin'
Dog = 'Samba'
DOG = 'Bernie'
print(f"The three dogs are named {dog}, {Dog} and {DOG}.")