RosettaCodeData/Task/Case-sensitivity-of-identifiers/Python/case-sensitivity-of-identifiers.py

5 lines
180 B
Python
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
>>> 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
>>>