TIL(Develop)

python3 print 자동개행 안되도록 하기

개발바닥곰발바닥!!! 2021. 8. 1. 10:47

print(a)는 print(a,end='\n')과 같다

자동개행 안되도록 하면 print(a,end='')라고 하면 됨