+ 1
How do you write a code that outputs.. "my friend:\nathan"... As its written without skipping to a new line using print function
Print problem in python
2 Respostas
+ 2
print(r"my friend\nis...")
+ 3
print("my friend:\\nathan")
Print problem in python