python (3) 썸네일형 리스트형 [python]인생에서 남은 나이 # 🚨 Don't change the code below 👇 age = input("What is your current age?") # 🚨 Don't change the code above 👆 #Write your code below this line 👇 days = (90 - int(age)) * 365 weeks = (90 - int(age)) * 52 months = (90 - int(age))* 12 print(f"you have {days} days, {weeks} week, and {months} months left") age_as_int = int(age) years_remaining = 90 - age_as_int days_remainng = years_remaining * 365 we.. [python] BMI 계산기 height = input("enter your height in m : ") weight = input("enter your weight in kg : " ) BMI = int(weight ) / float(height) ** 2 print(BMI) BMI_as_int = int(BMI) 오늘부터 차근차근 드디어 컴퓨터가 설치 되었다. ! 나는 오늘부로 개발자의 길을 걷는다. 대기업에 들어가 구조를 배운뒤 창업하는 그날 까지 . 먼 훗 날 이 글을 성공하여 보기를 바란다. 나이 26살에 , 2022년 5월 18일 씀 이전 1 다음