본문 바로가기
코드보관소/Python

[python] hello, world!

by 위치결정 2021. 5. 2.
반응형
def hello():
    print('hello, world!')

if __name__ == '__main__':
  hello()
  # 'hello, world!'
반응형

댓글