+ 1
how to overcome this.. hard quiz
I was taking my python introduction lessons smoothly, then suddenly I came by this quiz that I must solve to complete the sequence... but the quiz's content is nothing I came passing by in the previous lessons... Anyway here is it any suggestions for a solution? {Write a program to take x and y as input and output the string x, repeated y times.} tried thia solution but it didn't work.. x = input("String") y = int(input("integer")) print(x'*y)
4 Respostas
+ 10
Your code is correct...
In third line...remove that apostrophe mark(') after x
Here look at this...
https://code.sololearn.com/c7MhQxM6e61o/?ref=app
0
Mabey it will work ...
x= input()
y=int(input())
for i in range(y):
print(x)
If your y is int it will work
0
Y should be an integer, as in a number like 1, 2, 3 etc and not the word 'integer'. So basically in Python when you multiply a string e.g "Python" by an integer e.g 2, it would repeat the string two times: "PythonPython". So your y should be a number and remove the single quote inside the print statement.
0
4hmed0001 ,
When doing any Sololearn Code Coach or Practice, never include a prompt argument in your call of the input() function. The prompt gets printed and becomes part of the output of your program as far as the scoring engine is concerned, which won't match its expected output for each test case.
I don't know how it is that new Python students get the idea to include a prompt with input() anyway, since Sololearn never teaches that technique.