P_14 Operators in Python | Arithmetic Operators | Python Tutorials for Beginners

preview_player
Показать описание
Dear Aspirants!
Get ready for the Unacademy x GATE ACADEMY COMBAT where you can analyze your preparation for GATE 2023/24 & can win exciting gifts. 💻📱
- Get Scholarships and Rewards from a pool of over 30 Crore.
- Up to 100% Scholarship on Unacademy Plus Subscription.📝📝
- Top 3000 rankers get their GATE 2023 exam registration fees sponsored by Unacademy
- Top Rankers get their 1 year Engineering college tution fees sponsored by Unacademy

Use Code JKL10 to enroll

To Enroll Yourself, Visit:

For all Information, visit:
*********************************************

***********************************************
Connect & Contact Me:

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

More Playlists:

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

Today's assignments::
1st assignment::
weight=int(input("enter the weight in kg "))
height=float(input ("enter the height in meters "))
BMI=weight/(height**2)
print("Body mass index is equal to ", BMI)

2nd assignment::
5+2*(3-1)+10/5
=11.0

pragathi
Автор

you took examples are very helpful for easy to understand like {1) in bucket = variable, 2) changing milk, tea with help of 3rd glass= swap values } i hope u make videos with using real examples like this for better imagination... and pls upload videos daily as soon as possible bcz i am eagarly waiting for ur python videos... thanks a lot💖

satishvanacharla
Автор

weight = int(input("Enter your weight in kilogram(kg):\n"))
height = float(input("Enter your height in metres(m):\n"))
BMI = weight / (height **2)
print(f"Your BMI is {BMI}")

sadsyt
Автор

Wow nice, and very good communication another wyes clear voice madam

madalamalakondarayudu
Автор

Finally after long time 🙂🙂back to python . Thank you ma'am

mayankrai
Автор

The best programming trainer I had ever found

abhivarshamuppineedi
Автор

Weight=int(input("Weight in kgs = "))
Height=float(input("Height in mtr = "))
BMI= Weight/Height**2
print(BMI)

ramaraju
Автор

Weight=int(input("Enter Weight in kg "))
Height=float(input("Enter Height in meter "))
BMI=Weight/Height**2
print("BMI", BMI)

ashutoshkumar
Автор

""सफलता को पहली बार में सामना करने से मत 😊😊 डरो क्योंकि सफल गणित भी जीरो से शुरू हुआ था।""
👍🏻👍🏻👍🏻Thank you mam 🙏🙏🙏 Excellent session👌 ❤❤❤🙏

priya-wehg
Автор

Hello Jenny mam, Thanks for ur videos. Really valuable content easy to understand and practice as well.

prasannavibhav
Автор

weight=float(input("enter ur weight"))
height=float(input("enter ur heihgt"))
formula=weight/height**2
print("BMI=", formula)

YalaTooT
Автор

Mam please upload daily one video of python playlist so that course will cover soon 🤗

riyagupta
Автор

Mam I'm waiting for ur videos..But now finally u have uploaded mam thank u a lot mam....I hope u are fine...❤️.Take care

ashikregins
Автор

10:00 we can simply subtract 1 at the end of the given expression without using parenthesis and it will give 12.0 - 1=11.0

pushpanjalimishra
Автор

i/o

input= weight
input =height**2

o/p

weight =55
height**2=1.77

and the BMI = 31.0

sanjayganesh
Автор

#calculating BMI
weight = float(input("Weight in kg: "))
height = float(input("Height in meters: "))
BMI = weight/(height ** 2)
print("BMI = ", BMI)

arpandey
Автор

a = int(input("enter the weight"))
b = float(input("enter the height"))
bmi = a/b**b
print(bmi)

sanataniboy
Автор

kunal=input("enter your weight")
kunaldas=input("enter your height")

print(bmi)

kunaldas
Автор

weight=int(input("enter weight= "))
height=int(input("enter height= "))
BMI=weight/height**2
print(BMI)

Hari-oiej
Автор

hight =input("enter your hight:")
weight=input("enter your weight ")
bm=
print(bm)

Arya_ayami