Python/Study Note

값 끝에 문자 넣기 - end

Lami 2021. 11. 8. 11:31
print(1, end=' ')
print(2, end='  ')
print(3)

# ------------------- 결과
1 2  3