python 기초 print 문
# Chapter02-01 # 파이썬 완전 기초 # print 사용법 # 기본 출력 print('Python Start') print("Python Start") print() # separator 옵션 print('p','y','t','h','o','n',sep ='' ) print('p','y','t','h','o','n',sep ='n') print('p','y','t','h','o','n',sep ='|') print('p','y','t','h','o','n',sep =' ') print('0110','7777','1234', sep='-') print('python','google.com',sep ='@') print() # end 옵션 print('Welcome to', end=' ') pri..