Programming (11th Grade)
Strings
What will the following code print? print('Hello' * 3)
HelloHelloHello
Hello 3
3 Hello
Hello + Hello + Hello
Next