Coding Exercise for Beginners in Python | Exercise #4 | Python for Beginners #lec20

preview_player
Показать описание
*********************************************

Connect & Contact Me:

*******************************************

More Playlists:

#coding #pythonforbeginners #python #jennyslectures #pythonprogramming
Рекомендации по теме
Комментарии
Автор

I accidently met your videos when I was struggling to learn Data Structures and Algo... So then after the exam, yesterday onwards I am watching your python videos.. So you explained very well and videos are not boring.. Thank you so much for sharing your knowledge with us. Hopes to watch your all python videos within 3 days.. 🤩

StatsLessons
Автор

Teaching is a service. Hence proved by Jenny mam ❤️

sanmithasadhishkumar
Автор

Keep Going Mam The Sessions Are Very Usefull For The Students Like Me.

goodacharigaming
Автор

W=eval(input("enter weight"))
H=eval(input ("enter height"))
BMI = W//H**2
Print(BMI)

shivakrishnabeeraboina
Автор

can we use flow division // instead of /

mohithmanoj
Автор

Also use floor division for getting integer.

sakhabhadrabhoi
Автор

Weight = int(input("Enter your weight in Kg "))
Height = float(input("Enter your height in metres "))

BMI = int(Weight / (Height * Height))

print("Body mass is", BMI)

devSackey
Автор

Mam please make more videos on these exercise questions.... Provide us questions... Thank you ma'am

sriram
Автор

It's very good mam right now I am in class 12th and now I convert the code of 10 lines in 6 5 lines 😊😊

aryansrivastava
Автор

o = int(input("enter your weight: "))
p = float(input("enter your height: "))
BMI = o/p**2
print(round(BMI))

TimesUp
Автор

weight=input("Enter your weight in kg: ")
height=input("Enter your height in metre: ")

print(bmi)

sultanansari
Автор

h=float(input("Enter your height in meters"))
w=int(input("Enter your weight in kgs"))

BMI=w//(h**2)
print(BMI)

__kumarmanvendra
Автор

weight = input("enter weight in kg:")
height = input("enter height in m:")
Bmi =
print("Bmi = ", int(Bmi))

makupetrical
Автор

weight=int(input('enter the weight '))
hight=float(input('enter the hight '))
print(weight, ' kg')
print(hight, 'feet')
bm1=weight/hight**2
print(bm1)

faizanahmedtanoli
Автор

weight_kg = int(input("Enter your weight in kilograms: "))
height_mtr = float(input("Enter your height in metre: "))
BMI = ((weight_kg)/(height_mtr ** 2))
print(int(BMI), " is your Body Mass Index!!!")

MARUTHU_
Автор

height_mts=input("Enter height in meters: ")
weight_kg=input("Enter weight in kilogram: ")

print("BMI: ", int(bmi))

victorangom
Автор

Weight = input("Enter Weight in Killograms : ")
Height = input("Enter Height in Meter : ")
BMI =
print('BMI', int(BMI))

mohammedjazim
Автор

W=float(input ("enter weight in kg"))
H=int(input("enter height in cm"))
print("BMI =", W//(H**2))

mithu
Автор

weight=int(input())
height=float(input())
bmi=weight/height**2
print(round(bmi))

jaswanthsangam
Автор

weight = input("Enter weight in kilograms: ")
height = input("Enter height in meters: ")

# Convert inputs to float
weight = float(weight)
height = float(height)

# Calculate BMI
bmi = weight / (height ** 2)

# Print the result
print("BMI:", int(bmi))

praveenvignesh