0:00
Hello.
00:02
So in this problem we need to write and test a python script that reads in a character string and an integer and outputs the character string repeated the number of times given by that integer.
00:17
So the first thing we need to enter like our string.
00:23
So let it be like given the value of word.
00:29
And word is simply equal to an input by the user that says a prompt enter your string, for example.
00:42
That's the first step.
00:44
Also, i need the user to input an integer and let's call the variable integer.
00:52
And again, it's an input from the user, but we need to place the end function before to enforce.
01:00
The type of the input to be integer instead of a string and let the prompt be enter and integer.
01:11
So that's the two inputs right now...