0
Why is this code failing? (New lines)
print('''A B C D''') It prints an extra blank line so it fails the exercise
2 Antworten
+ 6
You can also use new line character `\n` to break a single line to multiple lines.
print("A\nB\nC\nD")
+ 3
Josh
You need to make sure that there are no white spaces:
print('''A[Enter]
B[Enter]
C[Enter]
D''')