파이썬에서도 다른 프로그래밍 언어와 마찬가지로 +,-,/,* 을 이용해서 연산을 진행할 수 있다.
다음은 유데미 파이썬 과정에서 진행한 BMI 프로젝트이다.
#PEMDASLR
# ()
# **
# * /
# + -
#유데미 수업 내용
#BMI
# 🚨 Don't change the code below 👇
height = input("enter your height in m: ")
weight = input("enter your weight in kg: ")
# 🚨 Don't change the code above 👆
#Write your code below this line 👇
BMI = float(weight) / float(height)**2
print(int(BMI))
#출력 결과
enter your height in m: 1.75
enter your weight in kg: 80
26
round()
#round
#숫자 2는 소수점자릿 수를 나타낸다.
print(round(8/3, 2)) #2.67
challenge
age = input("What is your current age?")
print(90-int(age))
left_life = 90-int(age)
print(f"you have {left_life*365}, {left_life*52} weeks, and {left_life*12} months left.")
[Python] Multiple if Condition (0) | 2022.05.12 |
---|---|
[Python] 조건문 (0) | 2022.05.10 |
[Python] Data Type (0) | 2022.05.02 |
[Python] 산술연산자 (0) | 2022.02.11 |
[Python] 숫자, 불, 문자열 다루는 인덱싱 (0) | 2022.02.09 |