Advertisements
Advertisements
Question
Write a program to repeat the string ‘‘GOOD MORNING” n times. Here ‘n’ is an integer entered by the user.
Solution
The string will be repeated only if the value is greater than zero, otherwise, it will return a blank. Therefore, the ‘if’ condition will be used to check the values of 'n' first and then the print statement will be executed.
Program:
str = "GOOD MORNING "
n = int(input("Enter the value of n: "))
if n>0:
print(str * n)
else:
print("Invalid value for n, enter only positive values")
OUTPUT:
Enter the value of n: 5
GOOD MORNING GOOD MORNING GOOD MORNING GOOD MORNING GOOD MORNING
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.
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
print('Bye' == 'BYE')