Skip to content
Advertisement

How is print(‘r’) or print(‘ ‘) giving me the output?

We were asked to print the following output:

JavaScript

I understand that it would require two loops so I tired this:

JavaScript

With this I am getting the desired output, but as soon as I remove the last line of print(‘r’) the output becomes something like this:

JavaScript

The desired output also comes out when I used print(‘ ‘) instead of print(‘r’), I don’t understand why this is happening?

Ps: I am a noob coder, starting my freshman year, so please go easy on me, if the formatting is not up to the mark, or the code looks bulky.

Advertisement

Answer

Probably not helping you so much but the following code produces the expected output:

JavaScript

The two important parameters here are sep (when you print a list) and end as argument of print. Let’s try to use it:

JavaScript

Update

Step by step:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement