Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- removetooltip
- pipenv
- 자바
- 강원도속초맛집
- 아스키코드
- Django
- 속초여행
- Python
- 가상환경
- c언어문자열
- 코딩독학
- FLUTTER
- 추상클래스
- JavaScript
- 알고리즘
- 노마드코더
- python3
- 포인터
- popupmenubutton
- 건대입구맛집
- BeautifulSoup
- 장고
- 정렬알고리즘
- DOM
- 성수동카페
- 컴퓨터과학
- 부스트코스
- 남양주맛집
- 상속
- richtext
Archives
- Today
- Total
YUYANE
Python / 조건문 본문
if-else문
def plus(a,b):
if type(b) is str:
return None
else :
return a+b
Boolean Operation
def age_check(age):
print(f"you are {age}")
if age < 18:
print("You can't drink")
elif age == 18:
print("You are new to this!")
elif age>20 and age<25:
print("You are still kind of young")
else:
print("Enjoy your drink")
age_check(18)
'Programming Languages > PYTHON' 카테고리의 다른 글
Python/ default argument로 None을 주자 (0) | 2020.12.16 |
---|---|
Python / 반복문 (0) | 2020.12.16 |
Python/ function (0) | 2020.12.15 |
Python/ Functions (0) | 2020.12.14 |
Python/ Sequence Type (list, dictionary) (0) | 2020.12.14 |
Comments