bro one doubt ippudu ikkada python learn ayyaka machine learning narchukundham anukuntuna so i pyhton full iyyaka machine learning ki valthey ardham avudha lada inka python adyna advance narchukovala
@@BharathPARUL ohooo ok bro avii mari meru chappara bro
@BharathPARUL18 сағат бұрын
@simmavineeth9228 chepta bruh..!!
@NikhithalakshmiDevireddy-06Күн бұрын
Thank you bro❤
@SivaLingamsettyКүн бұрын
❤❤
@srujanbilla17203 күн бұрын
Anna nice information ❤
@srujanbilla17203 күн бұрын
Anna nuvvu parul student ha Passed out ha?
@BharathPARUL3 күн бұрын
Yes parul University, 2nd year bruh..
@msangeeth284 күн бұрын
Watched till the end Ethical Hacking
@meenakshi29974 күн бұрын
Bro, I'm your new subscriber when i watch this video, it's really impressed me, the way you explained very clister clear tq❤❤. Don't mind plz make a video on python Libraries.
@BharathPARUL3 күн бұрын
Definitely, I'll do..!! Before that, many key points are there to know for beginners. LinkedIn, Time management, being consistent after all these I'll definitely do..🌟 Thanks for your compliment 🙏🏼..!!
@varshamanchikatla52004 күн бұрын
bro do a video on python with DSA
@meenakshi29974 күн бұрын
Yes bro please do
@BharathPARUL3 күн бұрын
I'll definitely do..!!🌟
@NaswaWorld5 күн бұрын
Good bro🤞 loved it ❤🙌
@Sandy1919s7 күн бұрын
Bro really good and clear explanation 💯💯💥 and I am a Java developer this vedio is very useful 💥
@BharathPARUL7 күн бұрын
Thank u brother..❤️🩹
@nikhitha99988 күн бұрын
Let's build together 💪
@GOVINDANDSONSMUSICALENTERTAINM10 күн бұрын
Excellent 🎉really valuable information, Bharath.
@Mr.Devloveper10 күн бұрын
08:10 🎉🎉🎉 Great bro
@Mr.Devloveper10 күн бұрын
Superb 🎉🎉 loved it!
@mandasyam932413 күн бұрын
sssss nenu anukunna 1st skill. nuv currect ga 1st skill cheppav video editing
@path_upgrade874614 күн бұрын
# Program to check largest number among three numbers: a,b,c = 5467,8768,5 # Conditions to check largest number: if a >= b and a >= c: largest_number = f"The largest number among {a},{b} and {c} is : {a}" elif b >= a and b >= c: largest_number = f"The largest number among {a},{b} and {c} is : {b}" else: largest_number = f"The largest number among {a},{b} and {c} is : {c}" # print largest number print(largest_number)
Chesta bruh, libraries kuda cover chesta takes time.. I'll cover everything..!!🫶🏽
@Rohit-is2ns20 күн бұрын
sir next video on human biology
@BharathPARUL20 күн бұрын
🧐🧐
@ganeshchitra69422 күн бұрын
Next topic
@BharathPARUL22 күн бұрын
Yeah, editing is going on.. definitely on Friday 😊
@ganeshchitra69429 күн бұрын
next topics post chayandi bro
@BharathPARUL29 күн бұрын
Yes, it will be on Friday..😊
@aravindswamy8719Ай бұрын
❤
@NikhithaLakshmidevireddyАй бұрын
First comment🥰
@aravindswamy8719Ай бұрын
❤
@Adithya2512Ай бұрын
#bgyt
@LazyCoder-v2rАй бұрын
Excellent Bharath.🎉. Crystal clear.
@Shaikshohel-o2hАй бұрын
Clear explanation bro..thankuu ❤
@aravindswamy8719Ай бұрын
❤
@Saipraveenabburi7Ай бұрын
Nice one 🙌🏻
@NikhithalakshmiDevireddy-06Ай бұрын
Thank you✨
@ganeshajonnalagadda-zu3qnАй бұрын
# numbers[0:4] print(f"=> The slicing of numbers[0:4] the string value of '{numbers}' is : {numbers[0:4]} ") # numbers[0:6:2] print(f"=> The slicing of numbers[0:6:2] the string value of '{numbers}' is : {numbers[0:6:2]} ") # numbers[3:7] print(f"=> The slicing of numbers[3:7] the string value of '{numbers}' is : {numbers[3:7]} ") # numbers[0:8:2] print(f"=> The slicing of numbers[0:8:2] the string value of '{numbers}' is : {numbers[0:8:2]} ") # numbers[0::] print(f"=> The slicing of numbers[0::] the string value of '{numbers}' is : {numbers[0::]} ") # numbers[-3:-1] print(f"=> The slicing of numbers[-3:-1] the string value of '{numbers}' is : {numbers[-3:-1]} ") # numbers[-5:-1:2] print(f"=> The slicing of numbers[-5:-1:2] the string value of '{numbers}' is : {numbers[-5:-1:2]} ") # numbers[0:-1:2] print(f"=> The slicing of numbers[0:-1:2] the string value of '{numbers}' is : {numbers[0:-1:2]} ") # numbers[-6:-3] print(f"=> The slicing of numbers[-6:-3] the string value of '{numbers}' is : {numbers[-6:-3]} ") # numbers[::-1] print(f"=> The slicing of numbers[::-1] the string value of '{numbers}' is : {numbers[::-1]} ")
@BharathPARULАй бұрын
That's good one bruh.. keep going..!
@BharathPARULАй бұрын
@ganeshajonnalagadda-zu3qn include chesa next conditional statements loki
@ganeshajonnalagadda-zu3qnАй бұрын
@@BharathPARUL Bro,try to apply below changes to your vs code environment. 1. Color Themes : Best themes dark phoenix or Darwin. 2. Font size : 25 3. File icon themes : Material icon theme. looks smart bro try it. Add extension like arepl extension.
@ganeshajonnalagadda-zu3qnАй бұрын
@@BharathPARUL Thank you bro. add below one bro # Palindrome Checker """ Palindrome : A palindrome is a word, phrase, number, or sequence that reads the same backward as forward. """ string = 'kadak' if len(string) <= 0: print("You must enter a word to identify if it is a palidrome or not.") elif string == string[::-1]: print(f"The given string => '{string}' is a palindrome.") else: print(f"The given string => '{string}' is not a palindrome.")
@ganeshajonnalagadda-zu3qnАй бұрын
@@BharathPARUL # function to check palindrome def check_palindrome(string): if len(string) <= 0: print("You must enter a word to identify if it is a palidrome or not.") elif string == string[::-1]: print(f"The given string => '{string}' is a palindrome.") print(f"""Reason for a palindrome: The string '{string}' is that reads the same forward to backward and backward to forward. →Forward to Backward => '{string}'. →Backward to Forward => '{string[::-1]}'.""") print(' ') else: print(f"The given string => '{string}' is not a palindrome.") print(f"""Reason for not a palindrome: The string '{string}' is that not reads the same forward to backward and backward to forward. →Forward to Backward => '{string}'. →Backward to Forward => '{string[::-1]}'.""") print(' ') check_palindrome('Bharath') check_palindrome('radar') check_palindrome('5335') check_palindrome('78789') check_palindrome('49094')
@BharathPARULАй бұрын
I was given my 💯 effort to make u understand this concept: Strings in python and slicing methods. I hope everyone like this and gain some knowledge from this video ⚡... Thank you for your support 🙏🏽
@ganeshajonnalagadda-zu3qnАй бұрын
"""1.print the numbers 1 to 5, separate by sep parameter. """ # code: a,b,c,d,e = 1,2,3,4,5 print(a,b,c,d,e,sep = '-') # output:1-2-3-4-5 """ 2.Take input four words separated by spaces and print them separated by sep parameter with semicolon(;) """ fruits = input("Enter four fruits: ") a,b,c,d = fruits.split(" ") print(a,b,c,d,sep = ';') #output: mango;apple;orange;pineapple """ 3.Give greeting as 'hello', and ask user to enter there name. output: hello,username..! """ name = input("Enter your name: ") greeting = 'hello' print(f"'hello,{name}..!'") """4. Write a problem to input two numbers and print their sum,difference,product and quotient. """ a = int(input("Enter any int value : ")) b = int(input("Enter any int value : ")) # Addition print(f"=> Addition of {a} and {b} is : {a+b}") # Subraction print(f"=> Subraction of {a} and {b} is : {a-b}") # Multiplication print(f"=> Multiplication of {a} times {b} is : {a*b}") # Division print(f"=> Division of {a} by {b} is : {a/b}") """ 5.Input two numbers by separating(,) and calculate the result of (a+b)*(a-b)""" n = input('Enter two numbers: ') a,b = n.split(',') print(f"{(int(a)+int(b))*(int(a)-int(b))}") """ 6. Take the inputs from the user and print the student details (name,age,rollno,branch,college) in separate lines. """ name = input('Enter your name: ') age = int(input('Enter your age : ')) rollno = int(input('Enter your rollno : ')) branch = input('Enter your branch name : ') college = input('Enter your college name : ') print(f""" Student details: Name : {name} Rollno : {rollno} Branch : {branch} College : {college} """)
@ganeshajonnalagadda-zu3qnАй бұрын
Bro, first of all great explanation than ever i thought you covering topics clearly. But try to increase font size for more visibility.
@BharathPARULАй бұрын
Sure bruh.. thank you 🌟
@VeligaramPadma-kz9zx2 ай бұрын
Anna python videos fast ga upload cheyandii anna,... Mee video kosam wait chesthunamuu...
@BharathPARUL2 ай бұрын
I was given my 💯 effort to make u understand this concept: Input output and problems on these concepts 🌟.. I hope everyone like this and gain some knowledge from this video ⚡... Thank you for your support 🙏🏽
@VeligaramPadma-kz9zx2 ай бұрын
Super anna😊😊 continue......all the best 👍👍
@nikhitha99982 ай бұрын
Very nice explanation, keep it up
@StudentvisionRs2 ай бұрын
👍🏻👍🏻
@SaiKiran-i6y2 ай бұрын
Nice
@aravindswamy87192 ай бұрын
Good ❤
@yourchannelname99012 ай бұрын
Nice explanation bro
@BharathPARUL2 ай бұрын
I hope everyone will understand this series ❤, Eve chayyandii baga nerchukondi nd miku nenu inka problems include chesta, next videos ithe chela important nd miku ardam ayyela record chesa🎉 I hope everyone is like it🫶🏽.. Miku a doubts unna ledha Amina suggestions evvali anukunna sare kinda comment box lo drop-down chayyandii.. Thank you for your support 🌟🙏🏽