0
Don't understad test case multiply variables
Hello! I havet a problem test case #1 & #2 in multiply variables. Test case #1 is input 1: hi, and input 2: 5. And the output should be hihihihihi. So I wrote x = "hi" y = int("5") print(y*x) No problems there, in test case #2 is input 1: python and input 2: 3. And the output should be pythonpythonpythonpython. So I wrote: x = "hi" y = int("5") print(y*x) x = "python" y = int("3") print (x*y) But then the answere is: hihihihihi pythonpythonpythonpython And I get wrong answere on both test cases. So to my question, how do I sepperate thise two so I get right on both?
1 Antwort
+ 1
Thanks a ton!!
And thanks for the link!