U can't even imagine how much u are helping students by a clear explanation, that happiness when we are able write a code by listening to u r classes was incredible
Chala basics bro ivvi chusa playlist lo bro interview lo elanti questions adagaru programming chepava a company and how to apply off campus,I am present 4 th year
The Largest Among three numbers n = input("Enter three numbers:") x,y,z = n.split(" ") num1 = int(x) num2 = int(y) num3 = int(z) If num1 > num2 and num1 > num3: print(f"The largest value : {num1}") elIf num2 > num1 and num2 > num3: print(f"The largest value : {num2}") else: print(f"The largest value : {num3}")
Anna problem 4 loo just If a>b and a>c: Print("a is larger no") elif b>a and b>c: print("b is larger no") else: print (" c is larger no") Pedithe aipoddhi kadhanna
TEMPERATURE CONV LAST PROBLEM annaya { ok ] a = int(input("enter temperature :")) units = input("give ") f = (a*(9/2)+32) k = (273+a) c = ((f - 32)*5/9) if units == "c": print(f"temperature in fahreniet :({f})") print(f"temperature in kelvin : ({k})") elif units == "k": print(f"temperature in fahreniet :({f})") print(f"temperature in fahreniet :({c})") elif units == "f": print(f"temperature in fahreniet :({k})") print(f"temperature in fahreniet :({c})") else : print ("coded")
almost 2 years nundi try chestunna , eh video clarity ga ardam kaledu , madhyalo odilesa , enduko ni videos pop ainai na feed lo so emundi elago ardam kadu ani open chesa , cut chestey ni 7 th video vrki ocha ...
#assignment on temparature a=int(input()) b=input("Enter the units :") b1=b.lower() if b1=='c': k=a+273.15 f=a*9/5+32 print(f"temparature in kelvin :{k}") print(f"temparature in fahrenhiet:{f}") elif b1=='k': c=a-273.15 f=(a-273.15)*9/5+32 print(f"temparature in celcius:{c}") print(f"temparature in faherhiet :{f}") elif b1=='f': c=(a-32)*5/9 k=(a-32)*5/9+273.15 print(f"temparature in celcius:{c}") print(f"temparature in kelvin :{k}")
m=int(input('marks in maths: ')) s=int(input('marks in scince: ')) e=int(input('marks in english: ')) total_marks=(m+s+e) average_marks=total_marks/3 percentage=(total_marks/300)*100 print(f"total marks: {total_marks} average marks:{average_marks}") grade= " " if m>=35 and s>=35 and e>=35 and percentage > 90: print("A") elif m>=35 and s>=35 and e>=35 and percentage > 80: print("B") elif m>=35 and s>=35 and e>=35 and percentage < 70: print("c") p=" " if m>=35 and s>=35 and e>=35: print("pass") else: print("fail")
23:00 we can try s[1:-1 ] or any other number but if we try [-4:3] or any other numbers why it is not showing any answer or no error is found in terminal. Any reason for it
year=int(input("Enter the year ")) if year%4==0: if year%100==0 and year%400!=0: print("not leap year") else: print("leap year ") else: print("not a leap year ") can we use this approach for 5th problem?
Did it with out seeing: s = input("Type Something To Check If It Is Palindrome:") reverse_s = s[::-1] if s == reverse_s: print(f"Yes, {s} Is A Palindrome") else: print(f"No, {s} Is Not A Palindrome")
Assignment Answer: temperature = float(input("Enter the temperature: ")) unit = input("Enter the units (C/F/K): ") unit1 = unit.lower() if unit1 == "c": k = temperature + 273.15 f = (temperature*(9/5)) + 32 print(f"The temperature in kelvin is: {k}") print(f"The temperature in fahrenheit is: {f}") elif unit1 == "f": c = (temperature - 32) * 5/9 k = (temperature - 32) * 5/9 + 273.15 print(f"The temperature in celsius is: {c}") print(f"The temperature in kelvin is: {k}") elif unit1 == "k": c = temperature - 273.15 f = (temperature - 273.15) * 9/5 + 32 print(f"The temperature in celsius is: {c}") print(f"The temperature in fahrenheit is: {f}") else: print("Invalid unit. Please enter C, F, or K.")
year = int(input("Enter A Year To Check If It Is A Leap Year:")) leap = False if year%100 == 0 and year%400 != 0: leap = False elif year%4 == 0: leap = True else: leap = False print(f"Is {year} A Leap Year? Answer: {leap}")
anna i tried this for problem 4: s = input('Enter the values:') x,y,z = s.split(',') num1 = int(x) num2 = int(y) num3 = int(z) if num1 >= num2 and num1 >= num3: print(f'Greatest:{num1}') elif num2 >= num3 and num2 >= num1: print(f'greater:{num2}') else : print(f'greater:{num3}')
x=int(input("give a numbe:")) y=int(input("give a numbe:")) z=int(input("give a numbe:")) if x>y and x>z:#or x==y or x==z: print(f"largest value is:{x}") elif xz or z>x>y or x==y: print(f"middle value is:{x}") elif y>x and y>z:#or y==x or y==z: print(f"largest valur is:{y}") if yz or z>y>x or y==x or y==z: print(f"middle value is:{y}") if z>y and z>x:#or z==x or z==y: print(f"largest valur is:{z}") elif zy or y>z>x or z==x or z==y: print(f"middle value is:{z}") else: print(" invalid input")
#Problem5 h = int(input("Enter any year")) if ( h % 4 == 0 ) and ( h % 100 !==0 ) and ( h % 400 == 0 ) : print("LEAP YEAR") else : print("NON LEAP YEAR") Can we try this ??
temp=int(input("Enter Temperature:")) unit=str(input("enter units (K or F or C): ")) if unit== "C": print(f"Temp in fahrenheit:{(temp*(9/5))+32}F Temperature in Kelvin:{temp+273.15}K") elif unit== "F": print(f"Temp in Celsius:{(temp-32)*5/9}C Temperature in Kelvin:{((temp-32)*5/9)+273.15}K") elif unit== "K": print(f"Temp in Celsius:{temp-273.15}C Temperature in fahrenheit:{((temp-273.15)*9/5)+32}F")
a = int(input("enter temperature :")) units = input("give units ") f = (a*(9/5)+32) k = (273.15+a) c = ((f - 32)*5/9) if units == "c": print(f"temperature in fahreniet :({f})") print(f"temperature in kelvin : ({k})")
elif units == "k": print(f"temperature in fahreniet :({f})") print(f"temperature in celsius :({c})")
elif units == "f": print(f"temperature in kelvin :({k})") print(f"temperature in celsius :({c})") else : print ("done")
Bro 5th sum ke year/100 kada but modulo% enduku vachinde bro 😢 Nenu mobile lo chastuntey false ane vastunde but modulo pedutunde result correct ga vastunde
Actual ga ee playlist "Code with Swaroop" app lo untadi ,money pay cheyyali , andulo assignments untayi . But bro deenini TH-cam lo upload chesadu free sample ga
for leap year program we have not satisfied the specified output here is exact solution: year=int(input("enter a year: ")) if (year % 4 == 0 and year % 100 != 0) or(year % 400 == 0): print(f"{year} is a leap year.") else: print(f"{year} is not a leap year.")
Bhai maine phase 1 mai lpunest lateral entry ka exam diya tha mera result a gya mai category 2 mai aya hoo meri fees 105000 per semester hai , but mai phirse doonha lpunest but mere paas ab tak second chance wala option nhi aya , to please bta do ki option kab tak ayega aur ya phir mujhe new Id se register krna padega
@@SwaroopVITB ok sure bro , option. Will come , but you know , lpu councellor are forcing me to apply with another mobile number with new Id , that's why I blocked them
temp=int(input("Enter Temperature:")) unit=str(input("enter units (K or F or C): ")) if unit== "C": print(f"Temp in fahrenheit:{(temp*(9/5))+32}F Temperature in Kelvin:{temp+273.15}K") elif unit== "F": print(f"Temp in Celsius:{(temp-32)*5/9}C Temperature in Kelvin:{((temp-32)*5/9)+273.15}K") elif unit== "K": print(f"Temp in Celsius:{temp-273.15}C Temperature in fahrenheit:{((temp-273.15)*9/5)+32}F")
U can't even imagine how much u are helping students by a clear explanation, that happiness when we are able write a code by listening to u r classes was incredible
Bro i am watching your videos from part 1 ,which are very useful to me
and super explanation
Soo Great of your Teaching, do start DSA ASAP 🥲
#problem5 we can try this:
year=int(input())
if year%100==0:
if year%400==0:
print("Leap year.")
else :
print("not a leap year.")
elif year%4==0:
print("Leap year.")
Thank you nenu 0 nundi ikkada varaku ragaliganu ante u r the reason ❤
Chala basics bro ivvi chusa playlist lo bro interview lo elanti questions adagaru programming chepava a company and how to apply off campus,I am present 4 th year
Super explanation anna
SQL kuda cheppandi
The Largest Among three numbers
n = input("Enter three numbers:")
x,y,z = n.split(" ")
num1 = int(x)
num2 = int(y)
num3 = int(z)
If num1 > num2 and num1 > num3:
print(f"The largest value : {num1}")
elIf num2 > num1 and num2 > num3:
print(f"The largest value : {num2}")
else:
print(f"The largest value : {num3}")
Anna problem 4 loo just
If a>b and a>c:
Print("a is larger no")
elif b>a and b>c:
print("b is larger no")
else:
print (" c is larger no")
Pedithe aipoddhi kadhanna
Same thought broo 😅
Same bro
Bro 1st if ,else conditions ki (==) evvu bro tharvatha ne doubt adugu .....
if two equal numbers are given,then answer will be wrong
Explntion bagundhi
Sql kuda chapandi
TEMPERATURE CONV LAST PROBLEM annaya { ok ]
a = int(input("enter temperature :"))
units = input("give ")
f = (a*(9/2)+32)
k = (273+a)
c = ((f - 32)*5/9)
if units == "c":
print(f"temperature in fahreniet :({f})")
print(f"temperature in kelvin : ({k})")
elif units == "k":
print(f"temperature in fahreniet :({f})")
print(f"temperature in fahreniet :({c})")
elif units == "f":
print(f"temperature in fahreniet :({k})")
print(f"temperature in fahreniet :({c})")
else :
print ("coded")
chaala easy ga ardam ayindi bro . TQ
almost 2 years nundi try chestunna , eh video clarity ga ardam kaledu , madhyalo odilesa , enduko ni videos pop ainai na feed lo so emundi elago ardam kadu ani open chesa , cut chestey ni 7 th video vrki ocha ...
Hlo anna, meeru C programming full course kuda chepandi anna pls
THANKS FOR YOUR VIDEOS BRO 🤩🤩🤩
#assignment on temparature
a=int(input())
b=input("Enter the units :")
b1=b.lower()
if b1=='c':
k=a+273.15
f=a*9/5+32
print(f"temparature in kelvin :{k}")
print(f"temparature in fahrenhiet:{f}")
elif b1=='k':
c=a-273.15
f=(a-273.15)*9/5+32
print(f"temparature in celcius:{c}")
print(f"temparature in faherhiet :{f}")
elif b1=='f':
c=(a-32)*5/9
k=(a-32)*5/9+273.15
print(f"temparature in celcius:{c}")
print(f"temparature in kelvin :{k}")
bro assignments akada unnai
Assignments ekkada nunchi chesthunnaru? Ekkada unnai?
@@SruthiBammidi-vg4vo description lo chudu bro
@@SruthiBammidi-vg4vo description lo chudu bro
d=int(input("year:"))
if d%4==0 and d%100!=0 or d%400==0:
print("leap year")
else:
print("not a leap year")
m=int(input('marks in maths: '))
s=int(input('marks in scince: '))
e=int(input('marks in english: '))
total_marks=(m+s+e)
average_marks=total_marks/3
percentage=(total_marks/300)*100
print(f"total marks: {total_marks}
average marks:{average_marks}")
grade= " "
if m>=35 and s>=35 and e>=35 and percentage > 90:
print("A")
elif m>=35 and s>=35 and e>=35 and percentage > 80:
print("B")
elif m>=35 and s>=35 and e>=35 and percentage < 70:
print("c")
p=" "
if m>=35 and s>=35 and e>=35:
print("pass")
else:
print("fail")
Input teskuni....process cheste ...output emostundi......
Formula by swaroop...
23:00 we can try s[1:-1 ] or any other number but if we try [-4:3] or any other numbers why it is not showing any answer or no error is found in terminal. Any reason for it
i will for sure crack python in this month.
awesome explanation guru
We will crack python ❤❤❤
Nenu try chesa correctena guruvu garu .
Definitely i will crack python
Bro your teaching amezing br
Mcq malli okasari whatsapp group lo post cheandi bro it will be helpful
Anna whatsApp group lo join avvutuntey full ayyipoyaaru ani vastundhi please anna reply avvadam ledhu nuvvu 😢
సూపర్ మైండ్ గ్లొవింగ్
m = int(input("Marks in Math: "))
s = int(input("Marks in Science: "))
e = int(input("Marks in English: "))
total_marks = m+s+e
average_marks = total_marks/3
grade = "None"
if total_marks >= 60 and total_marks < 70:
grade = "Pass Marks"
elif total_marks >= 70 and total_marks < 80:
grade = "C"
elif total_marks >= 80 and total_marks < 90:
grade = "B"
elif total_marks >= 90:
grade = "A"
else:
grade = "Fail"
print(f"Your Total Marks: {total_marks}")
print(f"Your Average Marks: {average_marks}")
print(f"Your Grade: {grade}")
We will crack python
year=int(input("Enter the year "))
if year%4==0:
if year%100==0 and year%400!=0:
print("not leap year")
else:
print("leap year ")
else:
print("not a leap year ")
can we use this approach
for 5th problem?
i will crack python😎
Function ela rayali annadhi oka vedio chyyandi
Did it with out seeing:
s = input("Type Something To Check If It Is Palindrome:")
reverse_s = s[::-1]
if s == reverse_s:
print(f"Yes, {s} Is A Palindrome")
else:
print(f"No, {s} Is Not A Palindrome")
Njoy pandagoo
Nice explanation bro
Assignment Answer:
temperature = float(input("Enter the temperature: "))
unit = input("Enter the units (C/F/K): ")
unit1 = unit.lower()
if unit1 == "c":
k = temperature + 273.15
f = (temperature*(9/5)) + 32
print(f"The temperature in kelvin is: {k}")
print(f"The temperature in fahrenheit is: {f}")
elif unit1 == "f":
c = (temperature - 32) * 5/9
k = (temperature - 32) * 5/9 + 273.15
print(f"The temperature in celsius is: {c}")
print(f"The temperature in kelvin is: {k}")
elif unit1 == "k":
c = temperature - 273.15
f = (temperature - 273.15) * 9/5 + 32
print(f"The temperature in celsius is: {c}")
print(f"The temperature in fahrenheit is: {f}")
else:
print("Invalid unit. Please enter C, F, or K.")
Brain tho bhale aadukundhi bayya problem 5! I have to take a look at it once more!
Anna white spaces gurinchi cheppu anna ardham kaledhu
year = int(input("Enter A Year To Check If It Is A Leap Year:"))
leap = False
if year%100 == 0 and year%400 != 0:
leap = False
elif year%4 == 0:
leap = True
else:
leap = False
print(f"Is {year} A Leap Year?
Answer: {leap}")
What's app group full ani vasthundhi, plz new what's app group ni create cheyyara plz
Chepthunna.. tharuvatha MCQ lo thappu chesthe untadhi mari😅😅😂😂😂😂
anna i tried this for problem 4:
s = input('Enter the values:')
x,y,z = s.split(',')
num1 = int(x)
num2 = int(y)
num3 = int(z)
if num1 >= num2 and num1 >= num3:
print(f'Greatest:{num1}')
elif num2 >= num3 and num2 >= num1:
print(f'greater:{num2}')
else :
print(f'greater:{num3}')
bro python lo website front end part design heyocha ??? or only back end kosame python use chestara ?? plz replay bro...tq
We will crack python
Anna ui ux designer gurinchi cheppu please
Please send some information about Full stack developer
We will crack PyTHON
Sql full course chepandi anna
we will crack python
you will crack 200k
str="chaduvkondi firstuu"
print(str[0:-1:-1])
answer blank enduku ostundhi
x=int(input("give a numbe:"))
y=int(input("give a numbe:"))
z=int(input("give a numbe:"))
if x>y and x>z:#or x==y or x==z:
print(f"largest value is:{x}")
elif xz or z>x>y or x==y:
print(f"middle value is:{x}")
elif y>x and y>z:#or y==x or y==z:
print(f"largest valur is:{y}")
if yz or z>y>x or y==x or y==z:
print(f"middle value is:{y}")
if z>y and z>x:#or z==x or z==y:
print(f"largest valur is:{z}")
elif zy or y>z>x or z==x or z==y:
print(f"middle value is:{z}")
else:
print(" invalid input")
MCQ akkada unai Anna
#Problem5
h = int(input("Enter any year"))
if ( h % 4 == 0 ) and
( h % 100 !==0 ) and
( h % 400 == 0 ) :
print("LEAP YEAR")
else :
print("NON LEAP YEAR")
Can we try this ??
Bro MCQ adho maku kuda access evachu kada bro
we will crack python
I will crack python
Bro functions cheppaledeee
Anna c kuda cheppu anna
c already chepparu bro anna website lo check chayu
@@BharathPARUL Me dagara mcq pdf unte plzz share cheyandii
python
Anna mcq's levu anna
communities ani full unayi anna !! please other evandi okati
We will crack python
Hai sir
I have one doubt
Is full stack developer is good for 3rd year B tech students
Assignments ekkada unnai?
Anna please c cheppu
temp=int(input("Enter Temperature:"))
unit=str(input("enter units (K or F or C): "))
if unit== "C":
print(f"Temp in fahrenheit:{(temp*(9/5))+32}F
Temperature in Kelvin:{temp+273.15}K")
elif unit== "F":
print(f"Temp in Celsius:{(temp-32)*5/9}C
Temperature in Kelvin:{((temp-32)*5/9)+273.15}K")
elif unit== "K":
print(f"Temp in Celsius:{temp-273.15}C
Temperature in fahrenheit:{((temp-273.15)*9/5)+32}F")
Anna manaku string telusu kani dani oka index kanukovali. Daniki ee function ledha?
Var_name : Goutham
print(var_name.index('o'))
Output : 1
a = int(input("enter temperature :"))
units = input("give units ")
f = (a*(9/5)+32)
k = (273.15+a)
c = ((f - 32)*5/9)
if units == "c":
print(f"temperature in fahreniet :({f})")
print(f"temperature in kelvin : ({k})")
elif units == "k":
print(f"temperature in fahreniet :({f})")
print(f"temperature in celsius :({c})")
elif units == "f":
print(f"temperature in kelvin :({k})")
print(f"temperature in celsius :({c})")
else :
print ("done")
temp=int(input("give number: "))
print(f"Temparature in Farenhiet - {(temp*9/5)+32}F")
print(f"Temparature in kelvin - {temp+273.15}K")
Bro assignment ekkada unaie bro
Bro 5th sum ke year/100 kada but modulo% enduku vachinde bro 😢
Nenu mobile lo chastuntey false ane vastunde but modulo pedutunde result correct ga vastunde
Broo nenu recent ga chustunaa assignment ekkada bro website ah
Can you please share me the link
@@sivaramsrinivas6323 Pettadu ahh 🙄
Actual ga ee playlist "Code with Swaroop" app lo untadi ,money pay cheyyali , andulo assignments untayi . But bro deenini TH-cam lo upload chesadu free sample ga
Anna na date of birth mistake undhi aadhar card lo jee mains ki allow chestara ledha reply please
ippudu inkem cheyalem gaa, parledhu chestharu anukunta
for leap year program we have not satisfied the specified output
here is exact solution:
year=int(input("enter a year: "))
if (year % 4 == 0 and year % 100 != 0) or(year % 400 == 0):
print(f"{year} is a leap year.")
else:
print(f"{year} is not a leap year.")
bro mcq, mcq, antav ,ekada unay bayya asalu ????????????????????????
Anyone send assignment pdf's
bro mcqs ekkada?
temp=int(input("Enter temperature: "))
name = input("Enter Units(K or F or C): ")
name1=name.lower()
if name1 =="c":
print(f"Temperature in Fahrenheit:{(temp* 9/5) + 32}F
Temperature in Kelvin: {temp + 273.15}K")
elif name1 == "k":
print(f"Temperature in celsius:{(temp - 273.15)}C
Temperature in fahrenheit:{(temp - 273.15) * 9/5 + 32}F")
elif name1 == "f":
print(f"Temperature in celsius:{(temp - 32) * 5/9}C
Temperature in Kelvin:{(temp - 32) * 5/9 + 273.15}K")
else:
print("Invalid key try again")
answer this
print(s[4::2])=?
start from 4 element and skip elements of 1
example : a = "Hello world"
print(s(4::2)
#out put : owrd
ok👆
Hi machaa , i have some doubts about python course and i need your help , iam studying btech 1st year in Chennai
Bhai maine phase 1 mai lpunest lateral entry ka exam diya tha mera result a gya mai category 2 mai aya hoo meri fees 105000 per semester hai , but mai phirse doonha lpunest but mere paas ab tak second chance wala option nhi aya , to please bta do ki option kab tak ayega aur ya phir mujhe new Id se register krna padega
New id Nhi chahiye, option will come again. You can message me in insta if you want the exact info.
@@SwaroopVITB ok sure bro , option. Will come , but you know , lpu councellor are forcing me to apply with another mobile number with new Id , that's why I blocked them
Sql kavali brooo
temp=int(input("Enter Temperature:"))
unit=str(input("enter units (K or F or C): "))
if unit== "C":
print(f"Temp in fahrenheit:{(temp*(9/5))+32}F
Temperature in Kelvin:{temp+273.15}K")
elif unit== "F":
print(f"Temp in Celsius:{(temp-32)*5/9}C
Temperature in Kelvin:{((temp-32)*5/9)+273.15}K")
elif unit== "K":
print(f"Temp in Celsius:{temp-273.15}C
Temperature in fahrenheit:{((temp-273.15)*9/5)+32}F")
We will crack python
We will crack python