Login Logout Link+ Admin Write

전체 글 - 135 post

회계감사

분식회계의 리스크가 있다는 부분에서 멈춤

Unexpected indent

'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

Hatethis

'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

First try was like:

'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

Wrong

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

Statement only runs for true condition

'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

If not True:

 

'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

Fill in the blanks to print “Welcome”

 

Or

'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

Num is a variable like x

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

들여쓰기가 중요

print

'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

If num == 7

 

'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

Indentation

 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

True and False

 

'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)

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
1 ··· 4 5 6 7 8 9