- 3
newline
The given code outputs A B C D (each letter is separated by a space). Modify the code to output each letter on a separate line, resulting in the following output: A B C D
5 Respuestas
+ 1
print('A\nB\nC\nD')
+ 1
print('''A
B
C
D''')
0
Use "\n" after A,B and C
0
Specify the language
- 1
"\n" after A,B and C doesn't work,