Advertisements
Advertisements
Question
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
print('Bye' == 'BYE')
Solution
print('Bye' == 'BYE')
As Python compares string character to character and when different characters are found then their Unicode value is compared. The character with a lower Unicode value is considered to be smaller. Here, 'y' has Unicode 121 and 'Y' has 89. Therefore, the output will be 'False'.
APPEARS IN
RELATED QUESTIONS
Write the corresponding Python assignment statement:
Assign the strings ‘Mohandas’, ‘Karamchand’, and ‘Gandhi’ to variables first, middle and last.
Write the corresponding Python assignment statement:
Assign the concatenated value of string variables first, middle, and last to variable fullname. Make sure to incorporate blank spaces appropriately between different parts of names.
Write a logical expression corresponding to the following statement in Python and evaluate the expressions (assuming variables num1, num2, num3, first, middle, and last are already having meaningful values):
The string ‘middle’ is larger than the string ‘first’ and smaller than the string ‘last’.
Write a logical expression corresponding to the following statement in Python and evaluate the expressions (assuming variables num1, num2, num3, first, middle, and last are already having meaningful values):
List Stationery is empty.
Write a program to repeat the string ‘‘GOOD MORNING” n times. Here ‘n’ is an integer entered by the user.