전체 글 - 135 post
- 회계감사 2021.03.04
- Unexpected indent 2021.03.04
- Hatethis 2021.03.04
- First try was like: 2021.03.04
- Wrong 2021.03.04
- Statement only runs for true condition 2021.03.04
- If not True: 2021.03.04
- Fill in the blanks to print “Welcome” 2021.03.04
- Num is a variable like x 2021.03.04
- :를 잊지 말자 2021.03.04
- 들여쓰기가 중요 2021.03.04
- If num == 7 2021.03.04
- Indentation 2021.03.04
- True and False 2021.03.04
- print(2 == 3) 2021.03.04

'PYTHON' 카테고리의 다른 글
Hatethis (0) | 2021.03.04 |
---|---|
First try was like: (0) | 2021.03.04 |
Wrong (0) | 2021.03.04 |
Statement only runs for true condition (0) | 2021.03.04 |
If not True: (0) | 2021.03.04 |

'PYTHON' 카테고리의 다른 글
Unexpected indent (0) | 2021.03.04 |
---|---|
First try was like: (0) | 2021.03.04 |
Wrong (0) | 2021.03.04 |
Statement only runs for true condition (0) | 2021.03.04 |
If not True: (0) | 2021.03.04 |

'PYTHON' 카테고리의 다른 글
Unexpected indent (0) | 2021.03.04 |
---|---|
Hatethis (0) | 2021.03.04 |
Wrong (0) | 2021.03.04 |
Statement only runs for true condition (0) | 2021.03.04 |
If not True: (0) | 2021.03.04 |
year = int(input())
#your code goes here
if year %4:
print("Not a leap year")
elif year %100:
print("Not a leap year")
elif year %400:
print("Leap year")
'PYTHON' 카테고리의 다른 글
Hatethis (0) | 2021.03.04 |
---|---|
First try was like: (0) | 2021.03.04 |
Statement only runs for true condition (0) | 2021.03.04 |
If not True: (0) | 2021.03.04 |
Fill in the blanks to print “Welcome” (0) | 2021.03.04 |

'PYTHON' 카테고리의 다른 글
First try was like: (0) | 2021.03.04 |
---|---|
Wrong (0) | 2021.03.04 |
If not True: (0) | 2021.03.04 |
Fill in the blanks to print “Welcome” (0) | 2021.03.04 |
Num is a variable like x (0) | 2021.03.04 |


'PYTHON' 카테고리의 다른 글
Wrong (0) | 2021.03.04 |
---|---|
Statement only runs for true condition (0) | 2021.03.04 |
Fill in the blanks to print “Welcome” (0) | 2021.03.04 |
Num is a variable like x (0) | 2021.03.04 |
:를 잊지 말자 (0) | 2021.03.04 |

'PYTHON' 카테고리의 다른 글
Statement only runs for true condition (0) | 2021.03.04 |
---|---|
If not True: (0) | 2021.03.04 |
Num is a variable like x (0) | 2021.03.04 |
:를 잊지 말자 (0) | 2021.03.04 |
들여쓰기가 중요 (0) | 2021.03.04 |

What is num
'PYTHON' 카테고리의 다른 글
If not True: (0) | 2021.03.04 |
---|---|
Fill in the blanks to print “Welcome” (0) | 2021.03.04 |
:를 잊지 말자 (0) | 2021.03.04 |
들여쓰기가 중요 (0) | 2021.03.04 |
If num == 7 (0) | 2021.03.04 |

'PYTHON' 카테고리의 다른 글
Fill in the blanks to print “Welcome” (0) | 2021.03.04 |
---|---|
Num is a variable like x (0) | 2021.03.04 |
들여쓰기가 중요 (0) | 2021.03.04 |
If num == 7 (0) | 2021.03.04 |
Indentation (0) | 2021.03.04 |

'PYTHON' 카테고리의 다른 글
Num is a variable like x (0) | 2021.03.04 |
---|---|
:를 잊지 말자 (0) | 2021.03.04 |
If num == 7 (0) | 2021.03.04 |
Indentation (0) | 2021.03.04 |
True and False (0) | 2021.03.04 |

'PYTHON' 카테고리의 다른 글
:를 잊지 말자 (0) | 2021.03.04 |
---|---|
들여쓰기가 중요 (0) | 2021.03.04 |
Indentation (0) | 2021.03.04 |
True and False (0) | 2021.03.04 |
print(2 == 3) (0) | 2021.03.04 |

Heads Up!
Indentation is used to define the level of nesting.
'PYTHON' 카테고리의 다른 글
들여쓰기가 중요 (0) | 2021.03.04 |
---|---|
If num == 7 (0) | 2021.03.04 |
True and False (0) | 2021.03.04 |
print(2 == 3) (0) | 2021.03.04 |
Python for beginners progress (0) | 2021.03.04 |

'PYTHON' 카테고리의 다른 글
If num == 7 (0) | 2021.03.04 |
---|---|
Indentation (0) | 2021.03.04 |
print(2 == 3) (0) | 2021.03.04 |
Python for beginners progress (0) | 2021.03.04 |
% is used for getting the remainder after the division of any two numbers. (0) | 2021.03.04 |
print(2 == 3)
False
Heads Up!
Be careful not to confuse assignment (one equals sign) with comparison (two equals signs). But don’t worry, we’ll be talking more about this later.
'PYTHON' 카테고리의 다른 글
Indentation (0) | 2021.03.04 |
---|---|
True and False (0) | 2021.03.04 |
Python for beginners progress (0) | 2021.03.04 |
% is used for getting the remainder after the division of any two numbers. (0) | 2021.03.04 |
Print(x) (0) | 2021.03.04 |