Respuesta :
import math as m
def print_word(N, W, retries = 4):
for _ in retries:
if(N > 100 or N < 0 or len(W) > 50):
print("Number is out of range or word is too large. Try again.")
new_word = str(input("New word: "))
new_num = int(input("New number: "))
if(new_num >= 0 and new_num <= 100 and len(W) <= 50):
for row in new_num:
print(new_word)
return "Thank you for your time!"
if(N >= 0 and N <= 100 and len(W) <= 50):
for row in N:
print(W)
return "Thank you for your time!"
try:
N = m.floor(int(input("Enter a number from 0 to 100: " )))
W = str(input("Enter a word: "))
except ValueError:
print("Invalid Input!")
print(print_word(N,W))
Following are the python program to print the input string value:
Program:
N= int(input("Enter a value of integer N (0 <= N <= 100): "))#defining an integer variable N that inputs integer value from the user-end
W = input("Enter the word W (length of 1 <= L <= 50): ")#defining a string variable W that inputs the value fom the user-end
for n in range(N):#defining a for loop that uses the range method with integer variable and prints the string value
print(W)#printing the string value
Program Explanation:
- Defining the an integer variable "N" that inputs an integer value from the user-end.
- In the next step, another variable "W" is declared that inputs the string value from the user-end.
- After input all the value a for loop is declared that uses the range method with integer variable and prints the string value.
Output:
Please find the attached file.
Fin out more information about the program here:
brainly.com/question/24604692
