[혼공파] print 함수 톺아보기
·
혼공학습단/혼공파
이 게시글은 혼공학습단(혼공파) 13기의 1주차 과제를 포함하고있습니다. 1. print() 함수의 기본 사용법print() 함수는 값을 출력하기 위해 사용됩니다.print("안녕하세요, Python!") # 출력: 안녕하세요, Python!쉼표로 여러 값을 구분하여 출력할 수도 있습니다.print("이름:", "성호", "나이:", 25) # 출력: 이름: 성호 나이: 252. print() 함수의 파라미터help(print)Help on built-in function print in module builtins:print(*args, sep=' ', end='\n', file=None, flush=False) Prints the values to a stream, or to sys.stdout..