Run
str1 = 'Hello World' str2 = 'Good Morning' if str1 == str2 : print('two strings are equal') else : print('two strings are not equal')
Output