10 Answers
+ 3
give a complete task description.
show your code.
+ 3
you do not use y and you cannot multiple 2 strings. you are supposed to take input.
again: give a complete TASK DESCRIPTION
+ 2
AGAIN:
Give a complete TASK DESCRIPTION.
Use input. INPUT. not hardcoded values.
+ 2
What you actually want your output to be like?
+ 1
which lesson section?
0
#your code goes here
x = "a"
y = "8"
print (x * 8)
#your code goes here
x = "cool"
y = "2"
print (x * 2)
#your code goes here
x = "123"
y = "3"
print (x * 3)
#your code goes here
x = "abc"
y = "4"
print (x * 4)
0
I want to print it differently on the text cases in the lesson section
0
Working with input lesson
0
sorry, can't find it.... are you sure it's python?
0
Favour đ€ do you mean:
print(x * int(y)) ?
Or can you post a screenshot of the task / its description