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

Python - 수준: 묻습니다.

Linda Hamilton
Linda Hamilton원래의
2024-12-03 21:29:10244검색

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.