> 백엔드 개발 > 파이썬 튜토리얼 > Python - 수준: 묻습니다.

Python - 수준: 묻습니다.

Linda Hamilton
풀어 주다: 2024-12-03 21:29:10
원래의
191명이 탐색했습니다.

Python - Level : asks

레벨 1 작업

1) 화씨를 섭씨로 변환

f=int(input("Enter the no. "))

c=5/9*(f-32)

print("Fahrenheit to celsius",round(c))
로그인 후 복사

출력:

Enter the no. 108
Fahrenheit to celsius 42

로그인 후 복사

2) 섭씨를 화씨로 변환

c=int(input("Enter the no. "))
f=c*(9/5)+32

print("celsius to fahrenheit",round(f))
로그인 후 복사

출력:

Enter the no. 42
celsius to fahrenheit 108

로그인 후 복사

3) Ft를 미터로 변환

#1 Feet = 0.3048 meters

feet=float(input("Enter the no. "))

meter=feet*0.3048

print("feet to meters",round(meter,1))
로그인 후 복사

출력:

Enter the no. 15
feet to meters 4.6

로그인 후 복사

4) 정사각형의 입력측, 출력측 면적

side=float(input("Enter the no. "))

area=side**2

print("Area of a square is ",area)
로그인 후 복사

출력:

Enter the no. 5
Area of a square is  25.0

로그인 후 복사

5) 입력-길이, 너비;출력-직사각형의 면적

#Area of a Rectangle=length*breadth

length=float(input("Enter length of the rectangle. "))
breadth=float(input("Enter breadth of the rectangle. "))

area=length*breadth

print("Area of a rectangle is ",area)
로그인 후 복사

출력:

Enter length of the rectangle. 5
Enter breadth of the rectangle. 10
Area of a rectangle is  50.0

로그인 후 복사

6) 반경 - 원의 면적

#Area of circle = πr2

r=int(input("Enter the radius of circle: "))

area=3.14*(r**2)

print("Area of the circle is ",area)
로그인 후 복사

출력:

Enter the radius of circle: 5
Area of the circle is  78.5

로그인 후 복사

7) USD를 INR로 변환

#usd=Rs. 84.56

dollar=float(input("Enter currency in dollars: "))
usd=dollar*84.56

print("Currency in rupees is =",usd)
로그인 후 복사

출력:

Enter currency in dollars: 500
Currency in rupees is = 42280.0

로그인 후 복사

위 내용은 Python - 수준: 묻습니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:dev.to
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿