Created
December 7, 2022 17:56
-
-
Save Pharylon/dedaedf486e5707b86cd2c68d417dc60 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
myString = 'This is a test!' | |
myOtherString = 'This is another test' | |
print('This is a test!' == 'This is a test!') | |
print(myString == 'This is a test!') | |
print('myString' == myString) | |
print(myString == myOtherString) | |
print('This is another test' == 'This is another test') | |
print('This is another test' == myOtherString) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment