Light Blue Pointer
본문 바로가기
TIL(Develop)

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

by 개발바닥곰발바닥!!! 2021. 8. 1.

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

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