5 lines
180 B
Python
5 lines
180 B
Python
|
|
>>> dog = 'Benjamin'; Dog = 'Samba'; DOG = 'Bernie'
|
||
|
|
>>> print ('The three dogs are named ',dog,', ',Dog,', and ',DOG)
|
||
|
|
The three dogs are named Benjamin , Samba , and Bernie
|
||
|
|
>>>
|