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
함수 리턴값
'Codeit > 프로그래밍 기초 in Python' 카테고리의 다른 글
프로그래밍과 데이터 in Python / 리스트 (0) | 2021.03.20 |
---|---|
프로그래밍 핵심 개념 in Python / 제어문 (0) | 2021.03.19 |
프로그래밍 핵심 개념 in Python / 추상화 (0) | 2021.03.18 |
프로그래밍 핵심 개념 in Python / 자료형 (0) | 2021.03.17 |
프로그래밍 시작하기 in Python / 파이썬 첫 걸음 (0) | 2021.03.15 |
댓글