Case-sensitivity of identifiers: Difference between revisions

Line 1,265:
Debug "There is just one dog named "+dog$</syntaxhighlight>
=={{header|Python}}==
Python variable names are case sensitive:
<syntaxhighlight lang="python">>>> dog = 'Benjamin'; Dog = 'Samba'; DOG = 'Bernie'
Dog = 'Samba'
>>> print ('The three dogs are named ',dog,', ',Dog,', and ',DOG)
DOG = 'Bernie'
The three dogs are named Benjamin , Samba , and Bernie
 
>>> </syntaxhighlight>
>>> print ('f"The three dogs are named ',{dog,'}, ',{Dog,',} and ',{DOG}.")</syntaxhighlight>
 
=={{header|Quackery}}==
<syntaxhighlight lang="quackery">[ $ 'Benjamin' ] is dog ( --> $ )