Post

@PythonPr Answer: Technically, nothing (no returns, doesn't even print quotes)
Solution: `*` of str and int gives repetition of string.
Eg,
"Py" * 3
gives
"PyPyPy"
If the multiplication is by 0, means 0 repetitions of the str, ie, empty string.
So,
"Python" * 0
is ""
When printed,
+
English

@PythonPr Omon you trying to print a str and multiplying an int without int(‘python’) I forgot the word and you expect an answer aside from system error
English

@PythonPr ANSWER is D) ""
Or more practically, doesn't print anything at all, not even the empty quotes in option D
English


























