Skip to content

Instantly share code, notes, and snippets.

@Pharylon
Created December 7, 2022 17:56
Show Gist options
  • Save Pharylon/dedaedf486e5707b86cd2c68d417dc60 to your computer and use it in GitHub Desktop.
Save Pharylon/dedaedf486e5707b86cd2c68d417dc60 to your computer and use it in GitHub Desktop.
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