5 lines
106 B
Python
5 lines
106 B
Python
dog = 'Benjamin'
|
|
Dog = 'Samba'
|
|
DOG = 'Bernie'
|
|
|
|
print(f"The three dogs are named {dog}, {Dog} and {DOG}.")
|