RosettaCodeData/Task/Case-sensitivity-of-identifiers/Python/case-sensitivity-of-identifiers.py
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

4 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
>>>