Hello, world!
Hello, world!
Hello, world!
.
.
.
Hello, world! 를 하도 많이 출력하다 보니 그냥 hello 만 입력해도 출력이 되게 하고 싶다
def hello():
print('Hello, world!')
hello()
자 이렇게 하면 된다
def hello(): >>hello()라는 함수를 만들어라!
print('Hello, world!') Hello, world!를 출력하는!
만들었으니까 써야죠?
hello() 호출
하면 def hello() 실행되고 Hello, world! 를 출력한다.