Heim > Backend-Entwicklung > Python-Tutorial > Python - Level: fragt

Python - Level: fragt

Linda Hamilton
Freigeben: 2024-12-03 21:29:10
Original
191 Leute haben es durchsucht

Python - Level : asks

Aufgaben der Stufe 1

1) Umrechnung von Fahrenheit in Celsius

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

c=5/9*(f-32)

print("Fahrenheit to celsius",round(c))
Nach dem Login kopieren

Ausgabe:

Enter the no. 108
Fahrenheit to celsius 42

Nach dem Login kopieren

2) Umrechnung von Celsius in Fahrenheit

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

print("celsius to fahrenheit",round(f))
Nach dem Login kopieren

Ausgabe:

Enter the no. 42
celsius to fahrenheit 108

Nach dem Login kopieren

3) Umrechnung von Fuß in Meter

#1 Feet = 0.3048 meters

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

meter=feet*0.3048

print("feet to meters",round(meter,1))
Nach dem Login kopieren

Ausgabe:

Enter the no. 15
feet to meters 4.6

Nach dem Login kopieren

4) Eingabeseite, Ausgabefläche eines Quadrats

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

area=side**2

print("Area of a square is ",area)
Nach dem Login kopieren

Ausgabe:

Enter the no. 5
Area of a square is  25.0

Nach dem Login kopieren

5) Eingabelänge, Breite; Ausgabefläche eines Rechtecks

#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)
Nach dem Login kopieren

Ausgabe:

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

Nach dem Login kopieren

6) Radius – Fläche eines Kreises

#Area of circle = πr2

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

area=3.14*(r**2)

print("Area of the circle is ",area)
Nach dem Login kopieren

Ausgabe:

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

Nach dem Login kopieren

7) Umrechnung von USD in INR

#usd=Rs. 84.56

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

print("Currency in rupees is =",usd)
Nach dem Login kopieren

Ausgabe:

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

Nach dem Login kopieren

Das obige ist der detaillierte Inhalt vonPython - Level: fragt. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:dev.to
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage