본문 바로가기
Codeit/프로그래밍 기초 in Python

프로그래밍 시작하기 in Python / 프로그래밍 기본 개념

by 에파 2021. 3. 16.
728x90

 

프로그래밍 시작하기 in Python / 프로그래밍 기본 개념

 

 

# 코멘트
print("Test")  # 코멘트 쓰는법

코멘트 (코딩할때 설명용으로 적당히 활용하면 좋음, 코멘트다는 습관 들이기)


#Integer -> -1, -2, 1, 2, 0
#Float -> 2.0, -1.0, 3.14
#String -> "Hello", "World"
#Boolean -> True, False

자료형 기본


burger_price = 4990
fries_price = 1490
drink_price = 1250

print(burger_price)
print(burger_price * 2)
print(burger_price + fries_price)
print(burger_price * 3 + fries_price * 2 + drink_price * 5)

#<Run>
#4990
#9980
#6480
#24200

변수 기본 (변수네이밍의 중요성, 코드 값 수정이 편함)


def hello():
    print("Hello")
    print("Welcome to Codeit!")

hello()

#<Run>
#Hello
#Welcome to Codeit!

함수(function) 기본


def hello(name1, name2):
    print("Hello!")
    print(name1)
    print(name2)
    print("Welcome to Codeit!")

hello("Michael", "Chris")

#<Run>
#Hello!
#Michael
#Chris
#Welcome to Codeit!

함수 파라미터


def get_square(x):
    return x * x

y = get_square(3)
print(y)

#<Run>
#9

함수 리턴값

댓글