상세 컨텐츠

본문 제목

[Python] 파이썬에서 숫자 다루기

Python

by TUZA 2022. 5. 9. 22:37

본문

파이썬에서도 다른 프로그래밍 언어와 마찬가지로 +,-,/,*  을 이용해서 연산을 진행할 수 있다.

다음은 유데미 파이썬 과정에서 진행한 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' 카테고리의 다른 글

[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

관련글 더보기