ex)

print()

함수선언


def say_hello(name):
   print("hello how r u?",name)
# 다른 언어들과 다르게 python은 빈 공백을 이용해 어떤 것 안에 어떤게 있는지 이해한다. 
# (tab or space 2번)
# (들여쓰기를 해줘야함)
say_hello('james') # 함수 실행

Return


name = 'john'
age = 25
isMen = True

print(f"Hello I'm {name}, I have {age} years in the earth")
# Hello I'm john, I have 25 years in the earth

print("Hello I'm {name}, I have {age} years in the earth")
# f(format)를 안붙이면?
# Hello I'm {name}, I have {age} years in the earth