Advertisements
Advertisements
Question
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.
Solution
len(Stationery) == 0
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 program to repeat the string ‘‘GOOD MORNING” n times. Here ‘n’ is an integer entered by the user.
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
print('Bye' == 'BYE')