1. Write a program that asks the user for their name and how many times to print it. The program should print out the user’s nam | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

1. Write a program that asks the user for their name and how many times to print it. The program should print out the user’s nam

1. Write a program that asks the user for their name and how many times to print it. The program should print out the user’s name the specified number of times. 2. The Fibonacci numbers are the sequence below, where the first two numbers are 1, and each number thereafter is the sum of the two preceding numbers. Write a program that asks the user how many Fibonacci numbers to print and then prints that many. 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89 . x=eval(input("Type name: "), sep="") y=eval(input("how many times to print it: "), sep="" for i in range(y): print(x, sep="") print(y, sep=""))

8th Feb 2023, 12:14 PM
Erika Abalora
8 Answers
+ 2
# Program to print the first n Fibonacci numbers # Ask the user for the number of Fibonacci numbers to print num = int(input("How many Fibonacci numbers would you like to print? ")) # Initialize the first two numbers of the sequence a = 0 b = 1 # Print the first n Fibonacci numbers for i in range(num): print(b) temp = a a = b b = temp + b
8th Feb 2023, 12:32 PM
Ireneo language
+ 1
it worked, thankyouuu
8th Feb 2023, 12:56 PM
Erika Abalora
0
whats the problem?
8th Feb 2023, 12:19 PM
Ireneo language
0
for i in range(2): print("1", end="") for i in range(2,x,2): x=eval(input("how many times to print fibonacci numbers: ")) print(i, sep="")
8th Feb 2023, 12:19 PM
Erika Abalora
0
I can't run both 1 and 2 the codes above is what I've been doing
8th Feb 2023, 12:20 PM
Erika Abalora
0
# Program to print user's name name = input("Please enter your name: ") times = int(input("How many times would you like to print your name? ")) for i in range(times): print(name)
8th Feb 2023, 12:24 PM
Ireneo language
0
I think it's not like that number 2 asks the user on how many times the sequence will continue
8th Feb 2023, 12:27 PM
Erika Abalora
0
x=eval(input("Type name: "), sep="") y=eval(input("how many times to print it: "), sep="" for i in range(y): print(x, sep="") print(y, sep=""))
8th Feb 2023, 12:56 PM
Erika Abalora