Yes, do you know? If you have to write a square. You have seen in books that there it's written as a^2 ( a tullu 2) But it's not Valid in python. You have to not write a tullu 2 ( a^2 ) You have to write a**2 🙂
Brother harry, i wanna thank you for compiling all the useful information related to python in just one video. I am from Pakistan and i gotta say, No youtuber teaches like you. The best thing You do is you keep engaging with your students during the video. You are not just a typical teacher who gets students bored, instead i have seen you making hard efforts to make things easy for us. Thank You So Much!
Hi, my name is Ahad. I completed learning JavaScript from CodeWithHarry, and now I'm working at a software house in Islamabad, where I'm earning well. Thank you so much, Harry! Currently, I'm watching their Python course videos to further enhance my skills and increase my earning potential.
It took me a month to complete this course because I was lazy, but I am proud that I stuck to it even when the concepts of OOPS felt overwhelming. I have watched several Python courses but this was the best one. Thank You ❤
: Newline (starts a new line) \t : Horizontal tab (adds a tab space)
: Carriage return \b : Backspace \f : Form feed \v : Vertical tab \a : ASCII bell (alert sound) \xhh : Character with hex value hh \ooo : Character with octal value ooo sir its a really amazing
harry bhai mein graphic and web designer hun aapki ye video dekh kar pyathon jurney start kar raha hun abhi tak true and false pr aaya hun aur apke padane ka tarika ek dum sabse alag hein thank you harry bhai
5:48:50 import random n = str(input("enter rock paper or sccicors ")) rock = "rock" paper = "paper" scisorrs = "scisorrs" game =[rock,paper,scisorrs] a = random.choice(game) print(f"computer chooses {a} and you choose {n}") if n == rock and a == paper : print("you lose") elif n == rock and a == scisorrs: print("you win") elif n== paper and a == scisorrs: print("you lose") elif n == paper and a == rock: print("you win") elif n == scisorrs and a == paper: print("you win") elif n== scisorrs and a == rock: print("you lose") elif a == n : print("tie") else: print("invalid input")
This is an extremely long, high quality Python tutorial video. If you’re a beginner at Python, this course is perfect for you. Harry breaks everything down so that it is easy to understand. Harry is a great teacher and is very knowledgeable about Python.
Hi, Carry bhai . This is for You.... '' Jindgi me jindgi ke liye , coding bhut jruri hai... mgr us sb jrurto ke liye; ak acha leader bhut jururi hai. "
5:27:01 - Creating a function to print a pattern based on input n 5:31:04 - Removing specific elements from a list in Python 5:33:08 - Explaining how to print multiplication tables in Python. 5:36:58 - Converting user input into mathematical form 5:38:52 - Understanding the game logic with different possibilities 5:42:52 - Understanding reverse dictionary usage in Python 5:44:54 - Generating random numbers and using the random.choice method in Python. 5:48:26 - Introduction to creating a simple program in Python 5:49:41 - Explaining advanced analysis of numbers and patterns 5:52:01 - Optimizing code for fewer lines but lower readability 5:53:14 - Prediction of win or lose based on the value of computer minus u. 5:55:43 - Data persistence in RAM during program execution 5:56:59 - Understanding program execution and data storage 5:59:33 - Python program can interact with files for reading and writing content. 6:01:41 - Importance of closing files after reading in Python 6:08:07 - Understanding file handling in Python 6:10:58 - Understanding file modes and with statement in Python. 6:15:27 - Creating a game function to update high score in Python 6:18:10 - Update high score in Python game 6:22:06 - Writing and updating highscore in Python program 6:23:58 - Creating tables using Python functions and file handling 6:27:46 - Working with file I/O and string manipulation in Python 6:29:46 - Be cautious of small mistakes while coding 6:34:24 - Explaining how to check presence of a specific word and its line number in a file 6:37:00 - Program to copy and compare text files in Python 6:42:39 - Object-oriented approach focuses on creating reusable code through classes and objects. 6:45:17 - A class is a blueprint for creating objects 6:49:37 - Creating employees with attributes in Python classes. 6:51:27 - Understanding class and object attributes 6:55:14 - Understand the importance of the self parameter in Python methods 6:57:04 - Understanding Employee.getInfo method and handling arguments 6:59:55 - Understanding class vs instance attributes and static methods in Python 7:02:08 - Understanding the 'init' method and its importance in Python classes. 7:05:44 - Understanding instance attributes in Python constructors 7:07:34 - Creating a class to store information of programmers working at Microsoft. 7:11:30 - Demonstrating square, cube, and square root functions in Python 7:13:20 - Understanding class and instance attributes in Python 7:17:11 - Creating a class and defining methods in Python 7:18:55 - Generating random train ticket fare using Python 7:22:23 - Chapter 11 discusses inheritance and object-oriented programming concepts. 7:23:59 - Creating and extending a programmer class with additional attributes 7:27:05 - Inheritance allows creating new classes from existing ones. 7:28:32 - Multiple inheritance allows a class to inherit from more than one parent class. 7:33:37 - Understanding inheritance in Python 7:36:40 - Understanding the concept of class method in Python 7:42:05 - Explanation of using property decorator for encapsulation in Python 7:44:45 - Understanding operator overloading in Python classes 7:48:48 - Creating a 3D vector class with constructor and inheritance 7:50:42 - Creating and using classes in Python 7:54:10 - Implementing salary calculation with increment property in Python class 7:56:00 - Implementing getter and setter methods for changing the increment value based on salary in Python. 7:59:36 - Creating a class for a complex number with a sum method. 8:01:28 - Representation of complex numbers using Python 8:05:16 - Implementing methods in a vector class 8:07:12 - Defining a function to get the length of a vector 8:11:00 - Guess a number game 8:13:00 - Guess the correct number and track attempts 8:17:25 - Type definition is important in Python 8:19:58 - Advanced type hints and match case in Python 8:26:12 - Avoiding zero division error in Python. 8:30:09 - Raising custom errors in Python 8:33:39 - Understanding 'finally' block in Python 8:35:14 - Importance of 'finally' in Python functions 8:37:55 - Understanding import statement in Python 8:39:09 - Understanding the __name__ in Python 8:41:31 - Understanding the important role of underscores in naming and module import in Python. 8:42:42 - Understanding local and global variables in Python functions. 8:45:08 - Using enumerate and list comprehension for efficient coding 8:47:16 - Demonstration of creating a squared list using list comprehension 8:52:48 - Generating and printing multiplication tables in Python. 8:55:20 - Writing and appending tables to a file in Python 9:00:17 - Creating and using virtual environments in Python 9:03:29 - Activating and using virtual environment in Python 9:09:20 - Explanation of join method in Python strings 9:11:37 - Using lambda functions and map function in Python 9:15:39 - Explanation of the reduce function in Python 9:17:19 - Creating and activating virtual environments in Python 9:21:03 - Convert multiplication table of 7 to a string 9:22:55 - Demonstrating usage of filter() function in Python 9:26:53 - Setting up virtual environments and installing packages with requirements.txt in Python 9:28:47 - Exploring Flask module and setting up a basic server 9:34:17 - Setting up text to speech functionality using pittsx3 package 9:38:33 - Implementing wake word recognition in Python using while loop 9:45:57 - Implementing basic voice commands using Python 9:49:05 - Creating a virtual assistant with Python 9:55:03 - Demonstrating interaction with virtual assistant Jarvis to play music 9:58:07 - Accessing news using News API and fetching headlines 10:04:41 - Using OpenAI's API in Python 10:08:46 - Implement OpenAI and API integration for advanced project capabilities 10:15:46 - Understanding the use of GTTS for controlling speech speed and voice 10:17:46 - Creating a WhatsApp bot using Python 10:20:33 - Understanding how to retrieve positions of icons on screen 10:21:49 - Creating a PyAutoGUI script to automate mouse actions and use PiperClip to handle clipboard content. 10:24:45 - Adjusting coordinates to fix program errors 10:26:27 - Introduction to OpenAI API 10:29:03 - Running Python code to interact with OpenAI package 10:30:38 - Analyzing chat history using Python bot named Harry 10:35:41 - Creating an automated chatbot with specific response generation logic. 10:38:05 - Automate the running of code using while loop and check for specific messages. 10:44:06 - Chatbot making mistakes while responding to messages 10:47:40 - Bot assistance with tracking coordinates. 10:51:21 - Tips for job search and resources for data science and machine learning 10:52:50 - Completing the Python course was an emotional achievement. Get everything about this video.
Bro it is suitable for the b tech exam syllabus?? Because I have less time for examination and i want to complete the syllabus for examination So if l complete this video then is it sufficient or not??
hARRY BHAIYA I am genuinly saying this python course is so much helpful....this is my day 3 of learing python...i am very grateful ki mujhe aap jaise ek teacher mila online k duniya mein..
I was looking at the old Python course for four days and just now I got a notification that you have uploaded a new course and I came here. Thank you for this course.😍
yaar matlab is waqt is video pa 5.2 million views hn lakin or video pa like sirf 132k yaar matlab koi bnda hmary liy itni mahnat krta hy or hum is ki videos ko like bhi nahi krty bari shameful baat hy sb bhai log video ko like kia kro yaar is say harry bhia ko motivation milti hy HARRY BHAI THIS COURSE IS VERY VERY HELPFUL AND AMAZING THANKS FOR THIS GOOD AND HELPFUL COUSE FOR MANY POOR STUDENTS WHO DONOT AFFORD EXPENSIVE INSTITUES LIKES ME
Absolutely, here are some commonly used escape sequence characters in Python: 1. Newline ( ): This sequence inserts a line break within the string, moving the cursor to the beginning of the next line. 2. Horizontal Tab (\t): This sequence inserts a horizontal tab character, typically moving the cursor a fixed number of spaces (often 4 or 8). 3. Double Quote (\"): This sequence allows you to include a double quote character within a string literal enclosed in double quotes. 4. Single Quote (\'): Similar to double quotes, this sequence allows you to include a single quote character within a string literal enclosed in single quotes. 5. Backslash (\\): This sequence escapes the backslash character itself, as the backslash is used to introduce escape sequences. 6. Bell (\a): This sequence produces an audible bell sound, which may not be supported on all environments. 7. Carriage Return ( ): This sequence moves the cursor back to the beginning of the current line, potentially erasing what was there before. 8. Backspace (\b): This sequence deletes the character preceding the cursor. 9. Octal (\ooo): This sequence represents a character using its octal value (three octal digits between 0 and 7). 10. Hexadecimal (\xhh): This sequence represents a character using its hexadecimal value (two hexadecimal digits between 0-9 and A-F). Remember that the backslash () initiates the escape sequence, followed by the character that defines the special behavior.
I am unable to run logical operators, can anyone plz guide me? i wrote all the commands true or false etc... by following the given way. but after running it says, print is not defined , do you mean by print?
As a beginner, I'm not only learning python but also learnt how to make my own notes in such organised manner.. thank you very much Harry bhai.. we are blessed to have you in you tube
@@BhawnaChahar-w9u yup the vdo is very good for beginners but it's not sufficient.. harry bhai didn't go deep into many things because its suppose to be for beginners.. after completing this learn more about modules.. matrix addition and multiplication etc.. make functions without using built-in or importing library.. good luck
2 string functions as asked at 1:35:00 1. str.isalpha() - checks if all chars in string are alphabets 2. str.isdigit() - checks if all chars in string are digits Iske bohot practicals kre hain school mein with c++ :)) Thanks !!
BHAI AAPNE POORI VIDEO DEKH LI KYA AGR HAA TO PLEASE YE BATA DO KI HARRY BHAI NE SAARI PDF OR CODES KAB PROVIDE KIYE HAI ME ABHI 3 HOURS KI DEKH CHUKA HU
abhi just 2 hrs ka lecture liya....i don't comment usually but sachh i've enrolled in many paid courses and after watching this i'm regretting my decision of buying those courses . you are genius man ...abhi just 2 hrs me i'm actually enjoying coding ..thank you so much for generating my interest in programming .
At 5:18:33 using max function simplifies the code def find_Max(a,b,c): return max(a,b,c) a = int(input("Enter the first number: ")) b = int(input("Enter the second number: ")) c = int(input("Enter the third number: ")) print(f"The largest number is {find_Max(a,b,c)}") Thanks a lot Harry bhai for this Course
Your way of teaching and keeping me engaged in activity instead of watching it as movie is helping me a lot. I tried the maximum number find out `9:25:30` with reduce function and lambda function to make the program logic one line. I used this nums=[1, 34, 55, 30, 48, 945, 70, 100, 235, 12] numLarge=reduce(lambda x, y: x if x > y else y, nums) Your way of teaching is awesome. Anyone can learn it effortlessly. Thanks for the course Harry
Harry bhai! Thask's for a beautiful course . you are a greate person.whord richest person who gives the knowlegde free.main pehle JS kar raha tha jab ap ka ya course aya to main boht khush hua .you are my elder brother thanks thanks a lot 😢❤😢❤
"Harry bhai, aapne to Python ekdam easy tareeke se samjha diya. Ekdam fadu video bana ke hame samjha diya. Aap aise hi dusri languages par bhi video banana. Python sikhne mein 2-3 months lagte hain, lekin maine usko 3 days mein complete kar liya. So, thank you Harry bhai!"
#HarryBhai apki website me C language, C++, Java and Flask ki cheatsheet download nahi ho rahi hai Maine cyber cafe me jakar download kia waha par bhi nahi hua apki website me kuchh technical issues hai isliye cheatsheet download nahi ho rahi hai please aap jaldi se is problem ka solution laaiye
#HarryBhai apki website me C language, C++, Java and Flask ki cheatsheet download nahi ho rahi hai Maine cyber cafe me jakar download kia waha par bhi nahi hua apki website me kuchh technical issues hai isliye cheatsheet download nahi ho rahi hai please aap jaldi se is problem ka solution laaiye
i started on 22nd december and now i arrived at project 2 "timestamp == 08:08:47" now i reached at Mega project 1: Jarvis today i completed this course 🙂 thank you harry bai itna kuch sikhany ky liy
leave a counter outside the loop and then update it over every itteration with the current itterator..... like the factorial finding algorithem...................
I started python because everyone was learning but when I started this course I suddenly got interest in Python. All Thanks to you brother!!!!!!!!!!! Completed 3 chapters and moving forward.
#HarryBhai apki website me C language, C++, Java and Flask ki cheatsheet download nahi ho rahi hai Maine cyber cafe me jakar download kia waha par bhi nahi hua apki website me kuchh technical issues hai isliye cheatsheet download nahi ho rahi hai please aap jaldi se is problem ka solution laaiye
Harry bhai this is my first comment in RUclips and I have no word to explain my experience due my small journey of coading and I want just say that u great....we really needs people or 'bhai' like u and I also want to say that we all are want to learn ai/ml and DSA using pythan by u
1:04:25 Python me default input as a string hota hai usko int me typecast krna padta hai. int(input("Enter a number")) flote(input("Enter a number")) ,etc
Harry Bhai, this Python Course is beneficial. I have seen your Web Development Course, which actually helped me in my growing journey of Programming. I am wholeheartedly thankful that you have helped many people achieve their dreams. I don't know how to thank you but I am really willing to meet you at once.
Finally Harry bhai back with amazing course RUclips history me bhai apna akela hai Jo ek bhi paid course nhi laya hai sab free free free bhai ke pass talent ki koi Kami nhi hai jitna bada bhai ka talent hai usse bhi kaiii Guna Harry bhaiya ka dil hai....bhai maine aankh band krke Harry bhai pe bharosha karta hu Harry bhai ne bola krne ka hai to karne ka hai....love u Harry bhaiya+teacher ❤❤❤❤
I completed this course on August 5, 2024, and believe me. It was an amazing course for me and for everyone. I spent almost 11 hours on it , but it was worthwhile. now I am very happy 😊😊 and emotional. Nobody can make a course like this for free except Harry Bhai. I love you very much from Lahore, Pakistan.
1:35:45 str.replace() Replaces occurrences of a substring with another substring. For ex: "Namaste Duniya".replace("Duniya", "Ajgar") # Output: "Namaste Ajgar" str.lower() Converts all characters in the string to lowercase. For ex: "Namaste Duniya".lower() # Output: "namaste duniya"
1:35:44 1st method : string.title() this method captitalize first letter of every word in the given string 2nd method : string.strip() : this remove trailing and leading whitespace in the given string
mene chapter 3, 2 times parha hai aur iska practice set bhi 2 dafa solve kiya hai ab mughy chapter 3 itna acha hogaya hai keh ab mai strings se related medium aur hard level ke bhi problems solve kr sakta hun ... mai bhut bara nahi hun mai class 8th ka student hun thank you so much Haris bhai !!!
I have also watched 100 days of code. If you are having a blowing mind, then you want to watch this 11-hour course if you have lazy mind then you want to watch 100 days of code because it is explained with very detail you can learn it in just 30 days if you watch 3 videos per day. But I recommend this course
@@Gen_Z_2006 Yeh waali karr lo bhai kyu ki mene ultimate C programming kiya tha 10 hours ka better explaination hai aur study stufff bhi abhi c programming mujhe acchi tarah aati hai
Hello, I'm Yasin Amin I'm 14 years old Your python course is very understanding...seems like I will master python within 3 days... Thank youuu...!! love from Kerala😁🌴
Just completed the full tutorial. The time I spent was really worthy. It feels good to learn so many important application of python. Thank you so much for this much effort. May Allah bless you.
Bhai ,kasam se , mai clg bilkul nhi jata boring hai....par aapke video dekhke , bca mai sem 1 se 4 tak practical mai full aate hai.. Professor bhi heran ho jate hai ki yeh Banda bina clg aaye, itna practical mai kitna achha score kr shakta hai. Thanks to u man...hats of u bro 🫡
@@sharma..8905 actually you can refer to this video for learning purposes and, refer to that playlist just for the remaining topics, and also that playlist contains some old topics and this video contains new topics as well as.
6:41:51, it is not mandatory to explicitly delete a file after creating, but guys, do you know what, after implementing the *os* module, we can use the following function *os.rename( |Old Name|, |New Name| ),* this allows us to rename the existing file without reading and writing file and then deleting the old file, but yeah, you can do that approach, if you want to practice.
#HarryBhai apki website me C language, C++, Java and Flask ki cheatsheet download nahi ho rahi hai Maine cyber cafe me jakar download kia waha par bhi nahi hua apki website me kuchh technical issues hai isliye cheatsheet download nahi ho rahi hai please aap jaldi se is problem ka solution laaiye
Bhai old folder open karne se explorer file me plus ka icon nhi aaraha hai like agar pehle first.py tha ab ma second.py file banana chahta hu but plus ka icon nhi aaraha hai explorer me kaise laye bhai please help kr bhai
Bhai old folder open karne se explorer file me plus ka icon nhi aaraha hai like agar pehle first.py tha ab ma second.py file banana chahta hu but plus ka icon nhi aaraha hai explorer me kaise laye bhai please help kr bhai
1:35:00 String function format(): Formats a string using placeholders. f-strings: Formats strings with embedded expressions (Python 3.6+). encode(): Encodes a string into bytes using a specified encoding (e.g., UTF-8). decode(): Decodes bytes into a string using a specified encoding. replace(): Replaces occurrences of a substring with another substring. split(): Splits a string into a list using a specified delimiter. strip(): Removes leading and trailing whitespace or specified characters. lstrip(): Removes leading whitespace or specified characters. rstrip(): Removes trailing whitespace or specified characters. join(): Joins a list of strings into a single string using a specified separator. find(): Finds the first occurrence of a substring, returns index, or -1 if not found. index(): Finds the first occurrence of a substring, raises an error if not found. startswith(): Checks if the string starts with the specified prefix. endswith(): Checks if the string ends with the specified suffix. count(): Counts occurrences of a substring in the string. isdigit(): Checks if all characters in the string are digits. isalpha(): Checks if all characters in the string are alphabetic. isalnum(): Checks if all characters in the string are alphanumeric. lower(): Converts all characters to lowercase. upper(): Converts all characters to uppercase. partition(): Splits the string at the first occurrence of the separator, returns a tuple. rpartition(): Splits the string at the last occurrence of the separator, returns a tuple. translate(): Replaces characters using a translation table (e.g., removing punctuation). zfill(): Pads the string on the left with zeros to fill a specified width.
The designing of this course is top notch...sab English mein sikhare the, par tum Hindi mein sikha kar kisi bhi language ko sikhna easy kar dete ho..... Big Big Thanks brother ❤
strip(), split(separator) strip for removing any leading and trailing spaces, split for splitting the string in a list format using given separator. thanks for making such an indepth and friendly course bhaiya
Hey Harry Bhai, I just wanted to say the course is amazing! I'm starting to get a good grip on Python. One thing I noticed though, at 5:19:19 in the video, the formula for converting Celsius to Fahrenheit seems incorrect. The correct formula is: Fahrenheit = (Celsius * 1.8) + 32 or equivalently, Fahrenheit = (Celsius * 9/5) + 32 Just thought I'd point that out! Keep up the great work! 😊
56:56 "Not" true ko false or false ko true kr deta hai 1:28:51 slicing 1:41:04 new way of writing name (3.6 onwards) 1:43:14 replace chaining 1:45:30 finding ftn 1:48:03 strings imp*** pnt 1 1:53:14 string imp*** pnt 2 2:04:11 Terminal ka gyan 2:22:53 Sum of list elements 2:29:06 why use dictionary (andr ki baat) 2:35:43 Interview imp que 2:41:53 imp point 2:59:40 important interview question 3:27:13 imp if concept 3:44:47 'in' keyword 3:54:33 simple but important 4:40:48 pattern problem 1 4:45:33 star problem 2 5:23:42 recursive problem 5:28:41 pattern problem using recursion 5:30:45 imp question (WATCH AGAIN) 5:44:48 Generate Random number in python 5:35:24 Snake, Water, Gun Project 6:07:27 Readline example 6:10:34 Appending example 6:11:53 With Statement (most used) 6:17:24 filehandling q1 6:23:49 file handling q2 6:27:45 q3 6:30:04 q4 6:34:05 q5 6:35:57 very imp concept 6:39:52 wipe out content 6:56:39 self parameter 7:04:20 init operator (imp syntaxes) 7:35:59 Constructor imp point 7:37:16 Class method 7:39:30 property decoraters??? 7:44:43 operator overloading 7:51:54 q2 7:53:46 q3 7:59:29 q4 (overload operators) 8:01:45 str dendur 8:17:45 type definition ** 9:05:28 pip freeze * 10:11:17 gTTs 10:12:48 pygame
1:35:50 str.split(separator): Splits the string into a list of substrings based on the separator. text = "hello world" print(text.split(" ")) # Output: ['hello' , 'world'] str.count(substring): Returns the number of non-overlapping occurrences of a substring in the string. text = "hello hello" print(text.count("hello")) # Output: 2
Ever since i could remember im the 221th subscribers. So here’s something if you’re also wondering 😂 The software Harry bhai used for screen recording is Movavi, with display typing key and other options enabled.
1:36:19 str.join(iterable): Joins the elements of the iterable using the string as a separator. str.ljust(width[, fillchar]): Left-justifies the string in a field of given width.
Harry bhai, the formula you suggested works, but it's way easier to just directly multiply n by (n+1) and then divide by 2, like this: (n * (n+1)) / 2. It gives the same result in one simple step! 5:24:49 🎉❤
2:57:57 , sir I wrote the program differently and also used sorted() function in last to sort numbers , but the result is same but sorted number wise , program :- numbers = { int(input("Write 1st No: ")), int(input("Write 2nd No: ")), int(input("Write 3rd No: ")), int(input("Write 4th No: ")), int(input("Write 5th No: ")), int(input("Write 6th No: ")), int(input("Write 7th No: ")), int(input("Write 8th No: ")), } print("Unique Numbers Are:",sorted(numbers))
1:40:25 bhai mzza aaraha haii ❤😂 mujhe aati hai had se zyaada python aapke python for absolute begginers wale course se sikha thaa 2 saal pehle aur abb nostalgia aaraha hai bhai love you so much ❤❤❤❤❤❤
1:39:36 Hexadecimal Escape Sequence (\xhh): In Python, you can represent characters by their hexadecimal ASCII values using the \x escape sequence. For example, to represent the character with the hexadecimal value 0x41 (which corresponds to the letter 'A'), you can use: Python hexadecimal_escape = 'This is the character with hex value: \x41' print(hexadecimal_escape) # Outputs: This is the character with hex value: A ------------------------------------------------------------------------------------------------------------------------- Octal Escape Sequence (\ooo): Characters can also be represented using their octal ASCII values. For instance, to represent the character with the octal value 101 (which corresponds to the letter 'e'), you can use: Python octal_escape = 'This is the character with octal value: \101' print(octal_escape) # Outputs: This is the character with octal value: e Remember that escape sequences allow you to include special characters within strings, even if they are not directly printable. Feel free to experiment with these examples and explore more escape sequences! 😊
1:16:00 - I will start from here next day , as I am coding for 1 hour already and I have some work to do, luckily I completed chapter 2 and its Practise set myself, I have done everything correct. Over all I am really liking this video and I also tanked harry bro with 100 rupees as I only got that much as a teenager. A Very Very Thanks to Harry Bhai. I told my friends also to learn from here, Keep Going Harry Bhai 😊, We all love ❤ your course.
Comment down the timestamp of your favorite part 🙂
0:50 Harry Bhai is back in action 🎉🎉
django ka update course lee auu bhaii
Harry Bhai JavaScript ki bhe is terhan ki long one short chahiye please
30:25 part
Favorite part is ....
Jb apne keyboard me _ dikhaya tha 😂😂
Bhai itna achcha course aap free mein diye hai... You proved that, "education is a service; not a business"😊
Thank you bhai
bilkul shi baat bhai
Yes, but in terms of posting it on RUclips it can be a service as well as a business. However let's be optimistic.
but what about private schools , where they are looting , lakhs of money from individual students
@@---tc7ug CORRUPTION EVERYWHERE....
School mat jao online padho 😂@@---tc7ug
Harryyy 🥺. You're the only reason I'm not giving up on programming. Thank you so much. You're the big brother we all desire.
#harrybhai plz GUI Development in Python ka latest course la do na sir plz jis jis ko bhi chahiye plz comment and like karo bhai
😂😂😂 losers 😅
@@Himanshu_Sharma__A What do you mean by loser🤔🤔
Absolutely true ❤ it's like a blessing ❤
@@Himanshu_Sharma__A jis tatte ne Dihadi krni seekhli ho or apne username m likhde dihadi majduri himanshi Asli looser vahi hua na
Bhaiyaa you are great yaar. Koi free mein ye sab nahi karega. You are providing even notes for free.
No words can express my gratitude. I was searching for a Python course and finally found the best video ever. Thnks a lottt
can relate too
you can learn python by mosh hamadani
Yes, do you know?
If you have to write a square.
You have seen in books that there it's written as a^2 ( a tullu 2)
But it's not Valid in python.
You have to not write a tullu 2 ( a^2 )
You have to write a**2 🙂
@@DeveloperAbhishek6 If you don't mind may I know your email id ?
Have u completed this video?
Brother harry, i wanna thank you for compiling all the useful information related to python in just one video. I am from Pakistan and i gotta say, No youtuber teaches like you. The best thing You do is you keep engaging with your students during the video. You are not just a typical teacher who gets students bored, instead i have seen you making hard efforts to make things easy for us. Thank You So Much!
Still he left sub topics of some topics I prefer you to use chat GPT to gett all of them
Can you bhai tell me how keeps his viewers engaged?
@@conventionsaside4300bro are you completing this course with one go 😢 please help me I'm feeling stupid 😢😢
Hi, my name is Ahad. I completed learning JavaScript from CodeWithHarry, and now I'm working at a software house in Islamabad, where I'm earning well. Thank you so much, Harry! Currently, I'm watching their Python course videos to further enhance my skills and increase my earning potential.
Woh sun le India me kuch dhamaka karne ka nahi soch rha hai na 😅😅
@@ashisharma_420 aap Abi Nandan ko qaboo may rakky... hamari taraf se nhi hoga
Pakistani tu india me dhamake ke liye python script to nhi sikh rha na?
@@ashisharma_420akashc_03
@@ashisharma_420❤
It took me a month to complete this course because I was lazy, but I am proud that I stuck to it even when the concepts of OOPS felt overwhelming. I have watched several Python courses but this was the best one. Thank You ❤
\' : Single quote
\" : Double quote
\\ : Backslash
: Newline (starts a new line)
\t : Horizontal tab (adds a tab space)
: Carriage return
\b : Backspace
\f : Form feed
\v : Vertical tab
\a : ASCII bell (alert sound)
\xhh : Character with hex value hh
\ooo : Character with octal value ooo
sir its a really amazing
It's called escape sequence
bhai course khatam kar liya?? kitna time laga aur age ka kya karog???
@Newone-io6og projects
Yehi to chahiye tha ❤ love you Harry Bhai
ruclips.net/user/shortsGFhOQQgdNUw?feature=share
#harrybhai plz GUI Development in Python ka latest course la do na sir plz jis jis ko bhi chahiye plz comment and like karo bhai
Is this course is sufficient for data science python
@@SuryakantShukla-vo5jq i guess basic to intermediate k liye sahi ahi, fod DS or DA aur advacne me numpy pandas sue karna hoga i guess
harry bhai mein graphic and web designer hun aapki ye video dekh kar pyathon jurney start kar raha hun abhi tak true and false pr aaya hun aur apke padane ka tarika ek dum sabse alag hein thank you harry bhai
Python ka spelling toh sikho
@@RamShankarPrasad-hz9sb ban gaya kool 🤡
@@RamShankarPrasad-hz9sb ok ji
5:48:50 import random
n = str(input("enter rock paper or sccicors "))
rock = "rock"
paper = "paper"
scisorrs = "scisorrs"
game =[rock,paper,scisorrs]
a = random.choice(game)
print(f"computer chooses {a} and you choose {n}")
if n == rock and a == paper :
print("you lose")
elif n == rock and a == scisorrs:
print("you win")
elif n== paper and a == scisorrs:
print("you lose")
elif n == paper and a == rock:
print("you win")
elif n == scisorrs and a == paper:
print("you win")
elif n== scisorrs and a == rock:
print("you lose")
elif a == n :
print("tie")
else:
print("invalid input")
😮😮😮😮😮😮Nice bhai😊
This is an extremely long, high quality Python tutorial video. If you’re a beginner at Python, this course is perfect for you. Harry breaks everything down so that it is easy to understand. Harry is a great teacher and is very knowledgeable about Python.
nnnnnnnnnnnnnnnnnnnnnn
Which one would you recommend?
His 100 day course or this vedio?
Is this course enough to cover all python topics? Bcz this also has advanced things
Hi,
Carry bhai .
This is for You....
'' Jindgi me jindgi ke liye ,
coding bhut jruri hai...
mgr us sb jrurto ke liye;
ak acha leader bhut jururi hai. "
baaki sbb shi hai bss harry likh deta
harry he wo , carry nehi 😂
replace J with Z letter 😂😂
string.replace("C","H")
string.replace("J", "Z") also
5:27:01 - Creating a function to print a pattern based on input n
5:31:04 - Removing specific elements from a list in Python
5:33:08 - Explaining how to print multiplication tables in Python.
5:36:58 - Converting user input into mathematical form
5:38:52 - Understanding the game logic with different possibilities
5:42:52 - Understanding reverse dictionary usage in Python
5:44:54 - Generating random numbers and using the random.choice method in Python.
5:48:26 - Introduction to creating a simple program in Python
5:49:41 - Explaining advanced analysis of numbers and patterns
5:52:01 - Optimizing code for fewer lines but lower readability
5:53:14 - Prediction of win or lose based on the value of computer minus u.
5:55:43 - Data persistence in RAM during program execution
5:56:59 - Understanding program execution and data storage
5:59:33 - Python program can interact with files for reading and writing content.
6:01:41 - Importance of closing files after reading in Python
6:08:07 - Understanding file handling in Python
6:10:58 - Understanding file modes and with statement in Python.
6:15:27 - Creating a game function to update high score in Python
6:18:10 - Update high score in Python game
6:22:06 - Writing and updating highscore in Python program
6:23:58 - Creating tables using Python functions and file handling
6:27:46 - Working with file I/O and string manipulation in Python
6:29:46 - Be cautious of small mistakes while coding
6:34:24 - Explaining how to check presence of a specific word and its line number in a file
6:37:00 - Program to copy and compare text files in Python
6:42:39 - Object-oriented approach focuses on creating reusable code through classes and objects.
6:45:17 - A class is a blueprint for creating objects
6:49:37 - Creating employees with attributes in Python classes.
6:51:27 - Understanding class and object attributes
6:55:14 - Understand the importance of the self parameter in Python methods
6:57:04 - Understanding Employee.getInfo method and handling arguments
6:59:55 - Understanding class vs instance attributes and static methods in Python
7:02:08 - Understanding the 'init' method and its importance in Python classes.
7:05:44 - Understanding instance attributes in Python constructors
7:07:34 - Creating a class to store information of programmers working at Microsoft.
7:11:30 - Demonstrating square, cube, and square root functions in Python
7:13:20 - Understanding class and instance attributes in Python
7:17:11 - Creating a class and defining methods in Python
7:18:55 - Generating random train ticket fare using Python
7:22:23 - Chapter 11 discusses inheritance and object-oriented programming concepts.
7:23:59 - Creating and extending a programmer class with additional attributes
7:27:05 - Inheritance allows creating new classes from existing ones.
7:28:32 - Multiple inheritance allows a class to inherit from more than one parent class.
7:33:37 - Understanding inheritance in Python
7:36:40 - Understanding the concept of class method in Python
7:42:05 - Explanation of using property decorator for encapsulation in Python
7:44:45 - Understanding operator overloading in Python classes
7:48:48 - Creating a 3D vector class with constructor and inheritance
7:50:42 - Creating and using classes in Python
7:54:10 - Implementing salary calculation with increment property in Python class
7:56:00 - Implementing getter and setter methods for changing the increment value based on salary in Python.
7:59:36 - Creating a class for a complex number with a sum method.
8:01:28 - Representation of complex numbers using Python
8:05:16 - Implementing methods in a vector class
8:07:12 - Defining a function to get the length of a vector
8:11:00 - Guess a number game
8:13:00 - Guess the correct number and track attempts
8:17:25 - Type definition is important in Python
8:19:58 - Advanced type hints and match case in Python
8:26:12 - Avoiding zero division error in Python.
8:30:09 - Raising custom errors in Python
8:33:39 - Understanding 'finally' block in Python
8:35:14 - Importance of 'finally' in Python functions
8:37:55 - Understanding import statement in Python
8:39:09 - Understanding the __name__ in Python
8:41:31 - Understanding the important role of underscores in naming and module import in Python.
8:42:42 - Understanding local and global variables in Python functions.
8:45:08 - Using enumerate and list comprehension for efficient coding
8:47:16 - Demonstration of creating a squared list using list comprehension
8:52:48 - Generating and printing multiplication tables in Python.
8:55:20 - Writing and appending tables to a file in Python
9:00:17 - Creating and using virtual environments in Python
9:03:29 - Activating and using virtual environment in Python
9:09:20 - Explanation of join method in Python strings
9:11:37 - Using lambda functions and map function in Python
9:15:39 - Explanation of the reduce function in Python
9:17:19 - Creating and activating virtual environments in Python
9:21:03 - Convert multiplication table of 7 to a string
9:22:55 - Demonstrating usage of filter() function in Python
9:26:53 - Setting up virtual environments and installing packages with requirements.txt in Python
9:28:47 - Exploring Flask module and setting up a basic server
9:34:17 - Setting up text to speech functionality using pittsx3 package
9:38:33 - Implementing wake word recognition in Python using while loop
9:45:57 - Implementing basic voice commands using Python
9:49:05 - Creating a virtual assistant with Python
9:55:03 - Demonstrating interaction with virtual assistant Jarvis to play music
9:58:07 - Accessing news using News API and fetching headlines
10:04:41 - Using OpenAI's API in Python
10:08:46 - Implement OpenAI and API integration for advanced project capabilities
10:15:46 - Understanding the use of GTTS for controlling speech speed and voice
10:17:46 - Creating a WhatsApp bot using Python
10:20:33 - Understanding how to retrieve positions of icons on screen
10:21:49 - Creating a PyAutoGUI script to automate mouse actions and use PiperClip to handle clipboard content.
10:24:45 - Adjusting coordinates to fix program errors
10:26:27 - Introduction to OpenAI API
10:29:03 - Running Python code to interact with OpenAI package
10:30:38 - Analyzing chat history using Python bot named Harry
10:35:41 - Creating an automated chatbot with specific response generation logic.
10:38:05 - Automate the running of code using while loop and check for specific messages.
10:44:06 - Chatbot making mistakes while responding to messages
10:47:40 - Bot assistance with tracking coordinates.
10:51:21 - Tips for job search and resources for data science and machine learning
10:52:50 - Completing the Python course was an emotional achievement.
Get everything about this video.
You learn
Lot bro 🎉🎉🎉 from these
How gain patent from these video
Almost 10hrs
Bro it is suitable for the b tech exam syllabus??
Because I have less time for examination and i want to complete the syllabus for examination
So if l complete this video then is it sufficient or not??
Bhai kitna likha hai 😅😅
Is this enough to learn python?
@@musicgroove676lemme know the source from which you study python
Harry bhaiya kya lajawab course banaya hai
Maza aagaya ❤❤
hARRY BHAIYA I am genuinly saying this python course is so much helpful....this is my day 3 of learing python...i am very grateful ki mujhe aap jaise ek teacher mila online k duniya mein..
I was looking at the old Python course for four days and just now I got a notification that you have uploaded a new course and I came here. Thank you for this course.😍
#harrybhai plz GUI Development in Python ka latest course la do na sir plz jis jis ko bhi chahiye plz comment and like karo bhai
Yah old course hi hai oneshot mai upload kar diya hai
@@xxehacker nhi
us moment chap 5 tk purane wale se kiya
bahi ek toh dhang se dekh lo.
Bhai aapko dekh ke lagta hai ki insaaniyat abhi bhi baki hai iss duniya mai, love you 3000 bro 🥲❤
yaar matlab is waqt is video pa 5.2 million views hn lakin or video pa like sirf 132k yaar matlab koi bnda hmary liy itni mahnat krta hy or hum is ki videos ko like bhi nahi krty bari shameful baat hy sb bhai log video ko like kia kro yaar is say harry bhia ko motivation milti hy
HARRY BHAI THIS COURSE IS VERY VERY HELPFUL AND AMAZING THANKS FOR THIS GOOD AND HELPFUL COUSE FOR MANY POOR STUDENTS WHO DONOT AFFORD EXPENSIVE INSTITUES LIKES ME
Absolutely, here are some commonly used escape sequence characters in Python:
1. Newline (
): This sequence inserts a line break within the string, moving the cursor to the beginning of the next line.
2. Horizontal Tab (\t): This sequence inserts a horizontal tab character, typically moving the cursor a fixed number of spaces (often 4 or 8).
3. Double Quote (\"): This sequence allows you to include a double quote character within a string literal enclosed in double quotes.
4. Single Quote (\'): Similar to double quotes, this sequence allows you to include a single quote character within a string literal enclosed in single quotes.
5. Backslash (\\): This sequence escapes the backslash character itself, as the backslash is used to introduce escape sequences.
6. Bell (\a): This sequence produces an audible bell sound, which may not be supported on all environments.
7. Carriage Return (
): This sequence moves the cursor back to the beginning of the current line, potentially erasing what was there before.
8. Backspace (\b): This sequence deletes the character preceding the cursor.
9. Octal (\ooo): This sequence represents a character using its octal value (three octal digits between 0 and 7).
10. Hexadecimal (\xhh): This sequence represents a character using its hexadecimal value (two hexadecimal digits between 0-9 and A-F).
Remember that the backslash () initiates the escape sequence, followed by the character that defines the special behavior.
hii
chatgpt se liya kya bro vo absolutely dekh ke lg rha hai
I am unable to run logical operators, can anyone plz guide me? i wrote all the commands true or false etc... by following the given way. but after running it says, print is not defined , do you mean by print?
@@fragranceforever5041 try and , or, not easy voting and driving examples in if elif
@@fragranceforever5041 are u using visual studio code ?
As a beginner, I'm not only learning python but also learnt how to make my own notes in such organised manner.. thank you very much Harry bhai.. we are blessed to have you in you tube
why you dont learn python ⁇
Stop making notes and practice more on vs code!
Have u completed this video?
@@BhawnaChahar-w9u yup the vdo is very good for beginners but it's not sufficient.. harry bhai didn't go deep into many things because its suppose to be for beginners.. after completing this learn more about modules.. matrix addition and multiplication etc.. make functions without using built-in or importing library.. good luck
@@BhawnaChahar-w9u although I have many more things to learn
2 string functions as asked at 1:35:00
1. str.isalpha() - checks if all chars in string are alphabets
2. str.isdigit() - checks if all chars in string are digits
Iske bohot practicals kre hain school mein with c++ :))
Thanks !!
bhai abhi school mai hi python seekh rahe ho kyaa ?
BHAI AAPNE POORI VIDEO DEKH LI KYA AGR HAA TO PLEASE YE BATA DO KI HARRY BHAI NE SAARI PDF OR CODES KAB PROVIDE KIYE HAI ME ABHI 3 HOURS KI DEKH CHUKA HU
@@hardikpandey-v3v description mai hai check karo
abhi just 2 hrs ka lecture liya....i don't comment usually but sachh i've enrolled in many paid courses and after watching this i'm regretting my decision of buying those courses . you are genius man ...abhi just 2 hrs me i'm actually enjoying coding ..thank you so much for generating my interest in programming .
Harry Bhai Aag Lga di apne iss baar🔥🔥❤🔥Zbrdst : Editing, Presentation, Course, Graphics
At 5:18:33 using max function simplifies the code
def find_Max(a,b,c):
return max(a,b,c)
a = int(input("Enter the first number: "))
b = int(input("Enter the second number: "))
c = int(input("Enter the third number: "))
print(f"The largest number is {find_Max(a,b,c)}")
Thanks a lot Harry bhai for this Course
same for minimum using min method
Your way of teaching and keeping me engaged in activity instead of watching it as movie is helping me a lot. I tried the maximum number find out `9:25:30` with reduce function and lambda function to make the program logic one line.
I used this
nums=[1, 34, 55, 30, 48, 945, 70, 100, 235, 12]
numLarge=reduce(lambda x, y: x if x > y else y, nums)
Your way of teaching is awesome. Anyone can learn it effortlessly.
Thanks for the course Harry
Harry bhai! Thask's for a beautiful course . you are a greate person.whord richest person who gives the knowlegde free.main pehle JS kar raha tha jab ap ka ya course aya to main boht khush hua .you are my elder brother thanks thanks a lot 😢❤😢❤
*THIS ULTRA LEGEND DESERVES MORE SUBSCRIBERS!* ❤
"Koi baat ni,, Koi baat nhi. You will do it better" You are very encouraging Harry. Really enjoying these lessons.
This python course is really helpful for every beginner student who want a best journey in codding.... ❤❤❤❤
"Harry bhai, aapne to Python ekdam easy tareeke se samjha diya. Ekdam fadu video bana ke hame samjha diya. Aap aise hi dusri languages par bhi video banana. Python sikhne mein 2-3 months lagte hain, lekin maine usko 3 days mein complete kar liya. So, thank you Harry bhai!"
Benifits huwa ISS course ka
python course ❌
tehekla python course ✅
harry bhai op 🔥🔥
ruclips.net/user/shortsGFhOQQgdNUw?feature=share
11 million views soon
#HarryBhai apki website me C language, C++, Java and Flask ki cheatsheet download nahi ho rahi hai Maine cyber cafe me jakar download kia waha par bhi nahi hua apki website me kuchh technical issues hai isliye cheatsheet download nahi ho rahi hai please aap jaldi se is problem ka solution laaiye
#HarryBhai apki website me C language, C++, Java and Flask ki cheatsheet download nahi ho rahi hai Maine cyber cafe me jakar download kia waha par bhi nahi hua apki website me kuchh technical issues hai isliye cheatsheet download nahi ho rahi hai please aap jaldi se is problem ka solution laaiye
carry trying to silence tehelka by launching python 3.12.4 just after harry launches python 3.12.3 zero se hero course
Ekdam sahi time pe post kiyaaa.. I'm learning python from scratch again 👀💪🏽😊
#harrybhai plz GUI Development in Python ka latest course la do na sir plz jis jis ko bhi chahiye plz comment and like karo bhai
me too😂
❤❤❤
GREAT GOING ... TODAY SECOND DAY FOR LEARNING PYTHON ..
thanks thanks thanks thanks
HARESH
At 4:49 (for reversing multiplication table) you can also use step decrement
for i in range(10, 0, -1):
print(f"{n} x {i} = {n*i}")
Harry bhaiya tussi great ho ❤
Coding video sunte hi sirf aap yaad aate ho hamesha 🔥😁
bhai is bande ko koi nobel award do bhai
isne 11 gante ki phyton video banadali jis ki mujhe sabse jayda jarut thi bhai love you yaar
bha spelling dekh lo yr
How is it going brother?
I'm learning it good
@@viciousvoid4219
Ok 😊
yrr mera phle program me error aa rha he
i started on 22nd december and now i arrived at project 2 "timestamp == 08:08:47"
now i reached at Mega project 1: Jarvis
today i completed this course 🙂
thank you harry bai itna kuch sikhany ky liy
Bhai yaar ye wala course dekhu ya vo 100 din wala
Respect him For 11 hours video Work just to teach us (Huge respect)
He will earn also
@@zain.off123 korect
for 4:50:16 : Easier way n = int(input("Enter a number :"))
for i in reversed ( range(1,11)) :
print({f"{n} X {i} = {n*i}"})
thanks bro it made it more easier
u r genius bro
for i in range(10,0,-1):
print(f"{n} X {i} = {n*i}")
what aboyt this one ?
for 4:31:34 alternate solution would be:
n = int(input("Enter a Number : "))
i=1
while(i
Thank you this is so much better
Reference: For Loop Practice Q5
This does not require the while loop, for example this will just print
"The sum of first 10 natural numbers is 55" 10 times
we don't need to use while loop. you can print it directly.
leave a counter outside the loop and then update it over every itteration with the current itterator.....
like the factorial finding algorithem...................
I started python because everyone was learning but when I started this course I suddenly got interest in Python.
All Thanks to you brother!!!!!!!!!!!
Completed 3 chapters and moving forward.
Vote for AI- ML Course Guys🥵☠
Yes we want AI ML COURSE
❤❤❤❤❤
print("we want dsa with python")
@@OmkarGiri-x3b what is dsa with python
@@Professionaladmi data structure and algorithms
57:05 "har kar bhi jeetne wale ko bazigar kehta hain aur jo true ko false aur false ko true banade usko not operator kehte hain"-HARRY BHAI🔥🔥
ye 2 hour 17min. per ye terminal mai kese likh rahe?
Please tell me
@@rudhvimishra8331 see from the starting bro
Aur kitne talents hai Harris apne pass , nice cinematic teaser
ruclips.net/user/shortsGFhOQQgdNUw?feature=share
#HarryBhai apki website me C language, C++, Java and Flask ki cheatsheet download nahi ho rahi hai Maine cyber cafe me jakar download kia waha par bhi nahi hua apki website me kuchh technical issues hai isliye cheatsheet download nahi ho rahi hai please aap jaldi se is problem ka solution laaiye
ye 2 hour 17min. per ye terminal mai kese likh rahe?
Please tell me
@@rudhvimishra833120 sec piche krke dekhle bhai
terminal mein python start krke type kiya....
Harry bhai this is my first comment in RUclips and I have no word to explain my experience due my small journey of coading and I want just say that u great....we really needs people or 'bhai' like u and I also want to say that we all are want to learn ai/ml and DSA using pythan by u
ch-9 q-6 and 7
print('Find pro max!')
g=input('File name?
->>>> ')
with open(f'{g}.txt','r') as o:
r=o.readlines()
i=0
while i
i dont understand anything :rofl:
@InvisibleBoostGaming Ok, Writing comments to make you understand...Just a minute
Chap 9 is hardest need to work on it
1:39:45
: Newline
\t : Horizontal tab
\\ : Backslash
\' : Single quote
\" : Double quote
: Carriage return
\b : Backspace
\f : Form feed
\v : Vertical tab
\a : Bell/Alert
\0 : Null character
1:04:25 Python me default input as a string hota hai usko int me typecast krna padta hai.
int(input("Enter a number"))
flote(input("Enter a number"))
,etc
Floate नही float होता है no problem galti sab se hoti hai 😊
Mujhse nahi 😂😂😂@@historicmind
ye 2 hour 17min. per ye terminal mai kese likh rahe?
Please tell me
@@rudhvimishra8331 'int' lga hai ussmae isliye jab aap code run karoge toh terminal mai likhne ke liye aajaayega apn aap
@@rudhvimishra8331 alt key press krte huye jha jha click kroge
Harry Bhai, this Python Course is beneficial. I have seen your Web Development Course, which actually helped me in my growing journey of Programming. I am wholeheartedly thankful that you have helped many people achieve their dreams. I don't know how to thank you but I am really willing to meet you at once.
Finally Harry bhai back with amazing course RUclips history me bhai apna akela hai Jo ek bhi paid course nhi laya hai sab free free free bhai ke pass talent ki koi Kami nhi hai jitna bada bhai ka talent hai usse bhi kaiii Guna Harry bhaiya ka dil hai....bhai maine aankh band krke Harry bhai pe bharosha karta hu Harry bhai ne bola krne ka hai to karne ka hai....love u Harry bhaiya+teacher ❤❤❤❤
I completed this course on August 5, 2024, and believe me. It was an amazing course for me and for everyone. I spent almost 11 hours on it , but it was worthwhile. now I am very happy 😊😊 and emotional.
Nobody can make a course like this for free except Harry Bhai. I love you very much from Lahore, Pakistan.
it's your first language of programming
@cocojay360. Bro I want your help regarding python
Bro l want your help regarding python
Mega project clear
@@ncert6709 I also want help regarding python
1:35:45 str.replace() Replaces occurrences of a substring with another substring. For ex: "Namaste Duniya".replace("Duniya", "Ajgar") # Output: "Namaste Ajgar"
str.lower() Converts all characters in the string to lowercase. For ex: "Namaste Duniya".lower() # Output: "namaste duniya"
Hello world ❌
Namaste duniya✅
😂😂 nya kia hai isme video se?
ye 2 hour 17min. per ye terminal mai kese likh rahe?
Please tell me
@@rudhvimishra8331 just click on the terminal and start typing :)
chapter 3 tak aachuka hu abb tak bohot aacha laga ,aaj bethyy bethhy din mai bohot kuch sikhne mila harry potter bhai🤩
1:35:44 1st method : string.title() this method captitalize first letter of every word in the given string 2nd method : string.strip() : this remove trailing and leading whitespace in the given string
aap se poocha nhi tha hama bhi smjh aata ha
😒😒😒
@@Hasheditors bhai video dekho harry bhai ne comment karne bola tha
mene chapter 3, 2 times parha hai aur iska practice set bhi 2 dafa solve kiya hai ab mughy chapter 3 itna acha hogaya hai keh ab mai strings se related medium aur hard level ke bhi problems solve kr sakta hun ... mai bhut bara nahi hun mai class 8th ka student hun thank you so much Haris bhai !!!
Me too
Bhai aapko dekhke lagta hai ki insaaniyat abhi bhi baki hai iss duniya mai 👍
This course is very helpful 🍀
Love you Harry Bhai 🔥🔥🔥
Thanks Harry bhai you are the best and bestest teacher thank you ❤️❤️🙏🙏🙏
I have also watched 100 days of code. If you are having a blowing mind, then you want to watch this 11-hour course if you have lazy mind then you want to watch 100 days of code because it is explained with very detail you can learn it in just 30 days if you watch 3 videos per day. But I recommend this course
Konsi course recommended kar rahe ho ye wali ya 100 days of code?
@@Gen_Z_2006 Yeh waali karr lo bhai kyu ki mene ultimate C programming kiya tha 10 hours ka better explaination hai aur study stufff bhi abhi c programming mujhe acchi tarah aati hai
@@Gen_Z_2006 I recommended this course
Bahi handbook download nahi ho raha
@@sandipkrgorai.2224 handbook kaha hai??
Hello, I'm Yasin Amin
I'm 14 years old
Your python course is very understanding...seems like I will master python within 3 days...
Thank youuu...!!
love from Kerala😁🌴
enjoy your teenage don't take our job
@@sudipbhandari5462 😂😂😂😂🤣🤣
@@sudipbhandari5462 There are no AGE limits for studying, Stay cool buddy😁
Do you understand Hindi language ??
Narial Pani
Just completed the full tutorial. The time I spent was really worthy. It feels good to learn so many important application of python. Thank you so much for this much effort. May Allah bless you.
Assalamu alaikum..
Can you please help? I am not able to run the code in the terminal..
JazakAllah khair.
Update your system environment
Whats your system configuaration?@@syedasalma4205
Aapka python course is the best👌👌. Mai python seekh raha hu toh sirf aapke course se.. tha k you Harry bhaii
Bhai ,kasam se , mai clg bilkul nhi jata boring hai....par aapke video dekhke , bca mai sem 1 se 4 tak practical mai full aate hai..
Professor bhi heran ho jate hai ki yeh Banda bina clg aaye, itna practical mai kitna achha score kr shakta hai.
Thanks to u man...hats of u bro 🫡
BCA Kaha se kar rhe bro
Harry sir is in progress.....
He is developing his skills very first day by day
I was learning from Existing Python Course launched in back 2022, and boom a new updated course is here. Thanks Harry Bhaiya
same here bro,but some topics in the 100 days python are not here do you think those topics can be skipped or not?
@@sharma..8905 actually you can refer to this video for learning purposes and, refer to that playlist just for the remaining topics, and also that playlist contains some old topics and this video contains new topics as well as.
As an non IT student ,this course is game changer for me..thank you bhaiyya.
6:41:51, it is not mandatory to explicitly delete a file after creating, but guys, do you know what,
after implementing the *os* module, we can use the following function *os.rename( |Old Name|, |New Name| ),* this allows us to rename the existing file without reading and writing file and then deleting the old file, but yeah, you can do that approach, if you want to practice.
thanks for this kind info
lol i did same ,It took only two line
@@gourav919 Your welcome!
1:41:10
This Python Course is Amazing, Ultimate, Astonishing, Remarkable, Incredible, Astounding, Breathtaking, Extraordinary, Phenomenal, Spectacular, Stupendous, Miraculous
#harrybhai plz GUI Development in Python ka latest course la do na sir plz jis jis ko bhi chahiye plz comment and like karo bhai
Bhai isme Paisa lagta hai app me? And yah app window 7 me kam karta hai? Bhaiyo please reply kro mai bhi garib pariwar se hoo 😢
@@mohanguptaofficial444 ram and processor ?
@@unknown-yk6df ram=3gb.and processor ka pta nhi
@@mohanguptaofficial444 notepad+ use kr lo broo... VS code thoda lag krege aap ke isme
My programming journey start with @CodeWithHarry and this journey not closed anytime . Thanku so much harry bhai ❤❤❤❤
This python🐍course is really helpful & I am learning it to learn Artificial intelligence🧠later. We are thankful to you❤ Love from Pakistan 🇵🇰
We got Sallu Bhai with Harry Bhai before GTA VI ❤
#HarryBhai apki website me C language, C++, Java and Flask ki cheatsheet download nahi ho rahi hai Maine cyber cafe me jakar download kia waha par bhi nahi hua apki website me kuchh technical issues hai isliye cheatsheet download nahi ho rahi hai please aap jaldi se is problem ka solution laaiye
sallu bhai got frustated with harry and immediately launched python 3.12.4 just after his course of 3.12.3
❤❤❤
npc7
Bhai old folder open karne se explorer file me plus ka icon nhi aaraha hai like agar pehle first.py tha ab ma second.py file banana chahta hu but plus ka icon nhi aaraha hai explorer me kaise laye bhai please help kr bhai
I tried many coding classes but you are the one by whom I am learning easily.
Bhai old folder open karne se explorer file me plus ka icon nhi aaraha hai like agar pehle first.py tha ab ma second.py file banana chahta hu but plus ka icon nhi aaraha hai explorer me kaise laye bhai please help kr bhai
1:35:00 String function
format(): Formats a string using placeholders.
f-strings: Formats strings with embedded expressions (Python 3.6+).
encode(): Encodes a string into bytes using a specified encoding (e.g., UTF-8).
decode(): Decodes bytes into a string using a specified encoding.
replace(): Replaces occurrences of a substring with another substring.
split(): Splits a string into a list using a specified delimiter.
strip(): Removes leading and trailing whitespace or specified characters.
lstrip(): Removes leading whitespace or specified characters.
rstrip(): Removes trailing whitespace or specified characters.
join(): Joins a list of strings into a single string using a specified separator.
find(): Finds the first occurrence of a substring, returns index, or -1 if not found.
index(): Finds the first occurrence of a substring, raises an error if not found.
startswith(): Checks if the string starts with the specified prefix.
endswith(): Checks if the string ends with the specified suffix.
count(): Counts occurrences of a substring in the string.
isdigit(): Checks if all characters in the string are digits.
isalpha(): Checks if all characters in the string are alphabetic.
isalnum(): Checks if all characters in the string are alphanumeric.
lower(): Converts all characters to lowercase.
upper(): Converts all characters to uppercase.
partition(): Splits the string at the first occurrence of the separator, returns a tuple.
rpartition(): Splits the string at the last occurrence of the separator, returns a tuple.
translate(): Replaces characters using a translation table (e.g., removing punctuation).
zfill(): Pads the string on the left with zeros to fill a specified width.
Dude chill 😐
@@Confidential070 yes
Chill lo
I am doing this course after 6 months of the video being published. But still i think this is one of the best python course i have found on youtube.
The designing of this course is top notch...sab English mein sikhare the, par tum Hindi mein sikha kar kisi bhi language ko sikhna easy kar dete ho..... Big Big Thanks brother ❤
No doubt...😊
4:42:13
for i in range(3):
if(i==0):
print(" * ")
if(i==1):
print(" *** ")
if(i==2):
print("*****")
strip(), split(separator)
strip for removing any leading and trailing spaces, split for splitting the string in a list format using given separator.
thanks for making such an indepth and friendly course bhaiya
Really
Hey Harry Bhai, I just wanted to say the course is amazing! I'm starting to get a good grip on Python. One thing I noticed though, at 5:19:19 in the video, the formula for converting Celsius to Fahrenheit seems incorrect. The correct formula is:
Fahrenheit = (Celsius * 1.8) + 32
or equivalently, Fahrenheit = (Celsius * 9/5) + 32
Just thought I'd point that out! Keep up the great work! 😊
2:58:43 do baar 18 ek as a int 18 or ek baar as a str "18"
ruclips.net/video/ztDK6u-XR6E/видео.htmlsi=wxjqu__MUC3iAAFr
Wtf* how did you past his photo 😮
@@MECHANICALHERO182 membership loge tb option aayega
Couldn't get past the fact that all this is made available for free! More power to you Harry bhai!
56:56 "Not" true ko false or false ko true kr deta hai
1:28:51 slicing
1:41:04 new way of writing name (3.6 onwards)
1:43:14 replace chaining
1:45:30 finding ftn
1:48:03 strings imp*** pnt 1
1:53:14 string imp*** pnt 2
2:04:11 Terminal ka gyan
2:22:53 Sum of list elements
2:29:06 why use dictionary (andr ki baat)
2:35:43 Interview imp que
2:41:53 imp point
2:59:40 important interview question
3:27:13 imp if concept
3:44:47 'in' keyword
3:54:33 simple but important
4:40:48 pattern problem 1
4:45:33 star problem 2
5:23:42 recursive problem
5:28:41 pattern problem using recursion
5:30:45 imp question (WATCH AGAIN)
5:44:48 Generate Random number in python
5:35:24 Snake, Water, Gun Project
6:07:27 Readline example
6:10:34 Appending example
6:11:53 With Statement (most used)
6:17:24 filehandling q1
6:23:49 file handling q2
6:27:45 q3
6:30:04 q4
6:34:05 q5
6:35:57 very imp concept
6:39:52 wipe out content
6:56:39 self parameter
7:04:20 init operator (imp syntaxes)
7:35:59 Constructor imp point
7:37:16 Class method
7:39:30 property decoraters???
7:44:43 operator overloading
7:51:54 q2
7:53:46 q3
7:59:29 q4 (overload operators)
8:01:45 str dendur
8:17:45 type definition **
9:05:28 pip freeze *
10:11:17 gTTs
10:12:48 pygame
bro is this video worth it in for deep understanding of basics?
@@atharvsharma1866 yes it is. But in few topics in which you feel you are not understanding from here you should refer to 100 days of python series.
@@atharvsharma1866 you watched?
@@atharvsharma1866 yeah it is worth it to understand the basic concepts of Python
Your lecture feels like watching a movie.😁😆🥰
1:35:50
str.split(separator): Splits the string into a list of substrings based on the separator.
text = "hello world"
print(text.split(" ")) # Output: ['hello' , 'world']
str.count(substring): Returns the number of non-overlapping occurrences of a substring in the string.
text = "hello hello"
print(text.count("hello")) # Output: 2
Ever since i could remember im the 221th subscribers.
So here’s something if you’re also wondering 😂
The software Harry bhai used for screen recording is Movavi, with display typing key and other options enabled.
The Legend Is back with a High quality Course
ruclips.net/user/shortsGFhOQQgdNUw?feature=share
#harrybhai plz GUI Development in Python ka latest course la do na sir plz jis jis ko bhi chahiye plz comment and like karo bhai
@@Anonymus-b6m I am with you bro
ye 2 hour 17min. per ye terminal mai kese likh rahe?
Please tell me
This Course is very helpful. Easy to understand. Thanks Sir Harry Thank you so much❤❤❤
1:36:19
str.join(iterable): Joins the elements of the iterable using the string as a separator.
str.ljust(width[, fillchar]): Left-justifies the string in a field of given width.
One of the Greatest Meet-Up in Programming World
lagta nahi tha ki aaj kal ke jaamane mein app jaise genius coding teacher honge jo ki free mein padhate hai.. thank you so much harry bhaiya❤❤❤❤❤❤
koyi bi free mai nahi parata . He want subscribe ,like and comments.
@@FurqanKhan-j9d yeh toh yeisa hua na parents bhi humko isliya bada karrahe hain ki unko sahara mile ?
This course is very helpful thank u so much ❤️
print("Hello
World")
# Output: World
#
: Carriage return - Moves the cursor to the beginning of the line (useful in certain terminal contexts).
output:
Hello
World
@@amdadulhaque457 Uske liye
hota h
hai
nahi @@amdadulhaque457
Harry bhai, the formula you suggested works, but it's way easier to just directly multiply n by (n+1) and then divide by 2, like this: (n * (n+1)) / 2. It gives the same result in one simple step! 5:24:49 🎉❤
editing, background music and interesting teaching......that's how u make students learn effectively
from this video i started my coding journey
i dont know if the coding is easy or not but python by harry is definitley easy
2:57:57 , sir I wrote the program differently and also used sorted() function in last to sort numbers , but the result is same but sorted number wise , program :- numbers = {
int(input("Write 1st No: ")),
int(input("Write 2nd No: ")),
int(input("Write 3rd No: ")),
int(input("Write 4th No: ")),
int(input("Write 5th No: ")),
int(input("Write 6th No: ")),
int(input("Write 7th No: ")),
int(input("Write 8th No: ")),
}
print("Unique Numbers Are:",sorted(numbers))
use just sort(numbers)
1:40:25 bhai mzza aaraha haii ❤😂 mujhe aati hai had se zyaada python aapke python for absolute begginers wale course se sikha thaa 2 saal pehle aur abb nostalgia aaraha hai bhai love you so much ❤❤❤❤❤❤
#harrybhai plz GUI Development in Python ka latest course la do na sir plz jis jis ko bhi chahiye plz comment and like karo bhai
Mja Aagya pura course dekha hai.❤❤❤❤
1:39:36 Hexadecimal Escape Sequence (\xhh):
In Python, you can represent characters by their hexadecimal ASCII values using the \x escape sequence.
For example, to represent the character with the hexadecimal value 0x41 (which corresponds to the letter 'A'), you can use:
Python
hexadecimal_escape = 'This is the character with hex value: \x41'
print(hexadecimal_escape) # Outputs: This is the character with hex value: A
-------------------------------------------------------------------------------------------------------------------------
Octal Escape Sequence (\ooo):
Characters can also be represented using their octal ASCII values.
For instance, to represent the character with the octal value 101 (which corresponds to the letter 'e'), you can use:
Python
octal_escape = 'This is the character with octal value: \101'
print(octal_escape) # Outputs: This is the character with octal value: e
Remember that escape sequences allow you to include special characters within strings, even if they are not directly printable. Feel free to experiment with these examples and explore more escape sequences! 😊
a = "Uzair is a good boy
not a bad \"boy\""
print(a) 1:38:28 syntexerror dekha rha ha
1:16:00 - I will start from here next day , as I am coding for 1 hour already and I have some work to do, luckily I completed chapter 2 and its Practise set myself, I have done everything correct. Over all I am really liking this video and I also tanked harry bro with 100 rupees as I only got that much as a teenager. A Very Very Thanks to Harry Bhai. I told my friends also to learn from here, Keep Going Harry Bhai 😊, We all love ❤ your course.