How was this course? If you are a student, you can get free access to all JetBrains IDEs for personal use at school or at home. Use the links below: PyCharm Community Edition - jb.gg/getPyCharm Free Student License - jb.gg/GetStudentLicense
00:01 Learn Python quickly and easily through this video and 5 projects 05:45 Creating and running a Python project in PyCharm 17:58 Python has built-in basic datatypes and typecasting is an important concept 23:48 Python run configuration and arithmetic operators 34:47 Python packages make programming tasks easier 40:36 String slicing and string methods in Python 51:44 You can use comma in print statement to print multiple things 56:54 List methods in Python 1:08:17 Sets in Python have various methods like pop, add, union, intersection, etc. 1:13:30 A dictionary is a key value pair. 1:25:33 The program demonstrates the use of if elif else ladder and match case statements in Python. 1:31:35 Python program to print table of a number using for loop and while loop 1:44:29 Python functions and try-accept exception handling 1:50:47 Error handling is important in programming 2:03:31 Object-oriented programming is used to create classes and objects that map real-world entities. 2:09:21 Creating a project and using the os module to run a command 2:19:09 Create a weather app that fetches and speaks the current temperature of a city. 2:24:27 You can resize an image using OpenCV in Python 2:34:56 Program to resize and convert images using cv2 and Python 2:40:33 This is a PDF merger program that allows users to merge multiple PDF files. 2:51:17 Store names and encodings of known faces 2:56:15 Convert color and recognize faces using OpenCV 3:07:41 Now you can start your Python journey
1:31:58 a = int(input("Please enter a number between 1-10 = ")) def table(x): for i in range(1,11): print("Multiplication of ",x," * ",i,"= ",x*i) match a: case 1: table(1) case 2: table(2) case 3: table(3) case 4: table(4) case 5: table(5) case 6: table(6) case 7: table(7) case 8: table(8) case 9: table(9) case 10: table(10) case _: print("choice should be between 1-10")
@@shahabhassan5814 range mai first woh jahan se shuru karna h or end mai ek zyada jaha tak ajana h so 1 se 10 tak ke liye range(1,11) 5 se 25 tak ke liye range(5,26)
Overall observation ,if you are totaly new to python ,you can learn new things and if you are known to python ,you can learn through 5 projects which starts from 2:09:00
Please whoever watching his videos, I suggest that please don't skip the ads so he get maximum benefit because he made such many courses for free 🆓 which are much better than all paid courses available at different platform
1:31:56 quiz ans number = int(input("Enter the number between 1 to 10: ")) match number: case number: print(number*1) print(number*2) print(number*3) print(number*4) print(number*5) print(number*6) print(number*7) print(number*8) print(number*9) print(number*10) print("This is the table of", number)
Time stamp : 1:32:00 // for printing table number = int(input("Enter a number between 1 and 10: ")) match number: case 1 |2 |3 |4 |5 |6 |7 |8 |9 |10: for i in range(1, 11): print(f"{number} * {i} = {number*i}") case _: print("Number is not between 1 and 10.")
me and my friend were not going to college since 1 month bcoz in youtube lots of content is there to learn python so we're not interested to go college I'm studying bsc data science in nizam college Hyderabad but i want to say something bro you make us inspired and learn python without going to college thanks harry.....
1:31:35 Python program to print table of a number using for loop and while loop number = int(input("Enter a number between 1 and 10: ")) match number: case 1: print_table(1) case 2: print_table(2) case 3: print_table(3) case 4: print_table(4) case 5: print_table(5) case 6: print_table(6) case 7: print_table(7) case 8: print_table(8) case 9: print_table(9) case 10: print_table(10) case _: print("Invalid number. Please enter a number between 1 and 10.")
time stamp : 18:24:12 running = True while running: print("MATHS TABLE") num_2 = int(input("Enter the number which table you want to print (Enter 0 to close) : ")) for i in range(1 , 11): table = num_2 * i print(f'The table is : {num_2} * {i} = {table}') if num_2 == 0: running = False
Time stamp : 1:31:48 Table Quiz while(True): table = int(input("Enter the number from 1 to 10: ")) match table: case 1: for i in range(1, 11): print(f"{table} X {i} = {table*i}") case 2: for i in range(1, 11): print(f"{table} X {i} = {table*i}") case 3: for i in range(1, 11): print(f"{table} X {i} = {table*i}") case 4: for i in range(1, 11): print(f"{table} X {i} = {table*i}") case 5: for i in range(1, 11): print(f"{table} X {i} = {table*i}") case 6: for i in range(1, 11): print(f"{table} X {i} = {table*i}") case 7: for i in range(1, 11): print(f"{table} X {i} = {table*i}") case 8: for i in range(1, 11): print(f"{table} X {i} = {table*i}") case 9: for i in range(1, 11): print(f"{table} X {i} = {table*i}") case 10: for i in range(1, 11): print(f"{table} X {i} = {table*i}") case _: print('Match not found. Please enter the number between 1 to 10 ') if table>10: break
1:31:20 # write a python program to print a table of a number that lies between 1 to 10 # print_table (number): a = int(input(" Enter a number between 1 and 10: ")) if 1
WAP for printing table from 1 to 10:- a = int (input ("Enter any number from 1 to 10:")) list1 = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] if a == 1: print(list1) elif a>=2 : for i in range(1,11): print(f"{a} * {i} =",i*a) else: print("Finish")
@@abdulrehmanshaik3582 Try this bro : a = int(input("Enter your favorite number: ")) match a: case a: print([a*1,a*2,a*3,a*4,a*5,a*6,a*7,a*8,a*9,a*10])
Text to Speech Python Example for WINDOWS: import pyttsx3 if __name__ == '__main__': text_to_speech = pyttsx3.init() while(True): word = input("Enter your command: ") if word == 'q': break text_to_speech.say(word) text_to_speech.runAndWait() NOTE: Before running the program, download and install the module, using "pip install pyttsx3" without " "
1:31:59 num1=int(input("Enter a number whose table is required : ")) num2=int(input("Enter a number from which number you have to multiply (1-5) : ")) match num2: case 1: print(num1,"x",num2,"=",num1*num2) case 2: print(num1,"x",num2,"=",num1*num2) case 3: print(num1,"x",num2,"=",num1*num2) case 4: print(num1,"x",num2,"=",num1*num2) case 5: print(num1,"x",num2,"=",num1*num2) match case quick quiz
Who are just lend on this video ,let you know ,if someone knows python and just attracted to the word "5 project" , stop .up to 2:09:00 is revision of python .so if any want just to go project ,please start from 2:09:00 . If beginner and not know python ,best overview till 2:09:00 . So ,if you know python , don't waste two hours and go straightway to 2:09:00 .
Harry bhai please make a complete playlist of DSA in C++ which can crack any interview... 🛐🛐🛐🛐🛐We're grateful for you.. Those who want harry bhai to create a new series of DSA in C++ like this comment and let harry bhai notice it... Loadsss of love❤❤❤ Harry bhai please give us an update.. We're waiting for it🥺🥺... At least make a paid course.. But please do it Sir... We understand only from you
a= int(input("enter number between 1 to 10 :")) match a: case 1: print(2) case 2: print(4) case 3: print(6) case 4: print(8) case 5: print(10) case 6: print(12) case 7: print(14) case 8: print(16) case 9: print(18) case 10: print(20) quesion at 1:31:52
Harry sir, for match case way to print table of a number between 1 and 10 is: t = int(input("Enter the number: ")) match t: case 1: print("1,2,3,4,5,6,7,8,9,10") case 2: print("2,4,6,8,10,12,14,16,18,20") case 3: print("3,6,9,12,15,18,21,24,27,30") case 4: print("4,8,12,16,20,24,28,32,36,40") case 5: print("5,10,15,20,25,30,35,40,45,50") case 6: print("6,12,18,24,30,36,42,48,54,60") case 7: print("7,14,21,28,35,42,49,56,63,70") case 8: print("8,16,24,32,40,48,56,64,72,80") case 9: print("9,18,27,36,45,54,63,72,81,90") case 10: print("10,20,30,40,50,60,70,80,90,100") case _: print("No match found") please tell me a way to make this even better and shorter.🙏
बेटा 2 साल पहले भी आपने Python कि विडिओ उपलोड किया था वोह विंडोस बेस पर था .... you are really master of language not only programing language your Hindi to good ()एक दम शुध्ध ) May God Bless You 🙏🙏🙏
Quick quiz of Match case statement: 1:32:00 / 3:08:45------------------------------- "def PrintTbl(): user=int(input(f"Enter the number you want to multiply the table : ")) match user: case 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10: print(f"Multiplication of number {user}:")
for i in range(1, 11): result = i * user print(f"{user} x {i} = {result}") case _: print("The number is not between 1 and 10") PrintTbl()"
Every student needs a mentor or teacher who has the ability to transform even the most challenging problems into manageable ones, making learning an empowering and enjoyable experience.
bro, say command did not work in Windows. if you have Windows operating system you need another command. I am providing you my code for robo speaker. code: # robe speaker mini project: import pyttsx3 as pt engine = pt.init() # object creation """ RATE""" rate = engine.getProperty('rate') # getting details of current speaking rate # print(rate) # printing current voice rate engine.setProperty('rate', 200) # setting up new voice rate # while True: """VOLUME""" volume = engine.getProperty('volume') # getting to know current volume level (min=0 and max=1) # print (volume) # printing current volume level engine.setProperty('volume',1.0) # setting up volume level between 0 and 1 """VOICE""" voices = engine.getProperty('voices') # getting details of current voice # engine.setProperty('voice', voices[0].id) # changing index, changes voices. o for male # engine.setProperty('voice', voices[1].id) # changing index, changes voices. 1 for female engine.say(text = input("Enter what you want to 'SPEAK': ")) engine.runAndWait() engine.stop() engine.say('My current speaking rate is ' + str(rate)) print(rate) engine.runAndWait() engine.stop() engine.say('My current speaking volume is ' + str(volume)) print(volume) engine.runAndWait() engine.stop() engine.say('My current speaking voice is ' + str(voices)) print(voices) engine.runAndWait() engine.stop() """Saving Voice to a file""" engine.save_to_file('hii hello', 'test.mp3') # engine.save_to_file('hii karan how are you tight now.', 'karan.mp3') engine.runAndWait()
a //= 2 will divide the value of ' a ' (4) by 2 and will return only the value before the decimal i.e. 2 a**= 2 will be ' a ' raise to ' 2 ' i.e. 4 raise to 2 which will be 16 a%= 2 will be the remainder after dividing ' a ' (4) by 2 which will be 0
@2:10 This is for windows users import pyttsx3 print("Welcome to RoboSpeaker...") while True: to_speak = input("Enter what you want me to speak (or type q to quit): ") if to_speak == 'q': print("Goodbye...") break engine = pyttsx3.init() engine.say(to_speak) engine.runAndWait()
Harry bhai , please please sql wala 100 days course daalo . Will be very helpful . I think no one can do better than you in terms of helping struggling students. Thnx !
Hello Harry, came across this video and want to share that I was just polishing my python skills after a break and just revised most of the things that will help alott. Thank you so much for taking your time out for making such content and sharing on this platform.Much appreciated. Kepp sharing and wish you the best.🥰✨
Bhai ye code with harry sirf logo ko scam karta h.. Isko kuch nahi ata h.. Ye banda google se copy karta h sab.. Ye simple cheese sikhata h isiliye logo ko easy lagta h aur log iske videos pasand karte h.. Pr aisa nhi h.. Bhot cheese advanced hoti h.. Ye kabhi nhi sikhata.. Aur python m ye programming level bhi simple rakhta h.. Ye sahi tarika nahi h
@@Comparison_club tu Sharm kar Bhai.. muze experience h industry m..muze PTA h kya hoti h coding level in company..muze Mt sikha tu ..thode dusre logo k course Akbar dekh le .. thode aankhe open kar le tu..pata padega tuze ..
@@Comparison_club bhai simple cheese sikhata ha isiliye samaz pate ho tum ..thoda ande se bahar bhi nikal ke thoda research karke dekh lo .kya kya cheese hoti h..ok . I'll give u challenge to make a bot which can take a tweet and make the image and write the tweet on that image and repost it on bots account..Bhai tu agar ye banayega ..to m man jaunga ..aur ha ..total coding industry grade ki honi chaiye ....Harry jaise sikhata h vaisei nahi chaiye ... Bhai isi phase se Gaya hu m yar ..3 saal hua h muze company m Kam karte huye as data scientist...
2:14:45 Robo Speaker project I know you are windows user. First install pyttsx3, the way you installed pip. Run the following code for the robo speaker import pyttsx3 def speak_line(): # Initialize the text-to-speech engine engine = pyttsx3.init() # Set properties (optional) # You can uncomment these lines and modify them as needed. # engine.setProperty('rate', 150) # Speed of speech (words per minute) # engine.setProperty('volume', 0.9) # Volume level (0.0 to 1.0) # Get user input user_input = input("Enter a line to speak: ") # Speak the user's input engine.say(user_input) # Wait for the speech to finish engine.runAndWait() if __name__ == "__main__": speak_line()
In project 1: 'say' is not recognized as an internal or external command, operable program or batch file. ['say' command works on systems like macOS] for windows Soln: -> pip install pyttsx3 import pyttsx3 if __name__ == '__main__': print("Welcome to RoboSpeaker version 0.1 by Kaykobad : ") x = input("Enter what you want the system to speak: ")
import os import win32com.client while True: x=input(f"Enter the word you want say: ") if x == 'q': speaker.Speak("bye bye friend") break speaker = win32com.client.Dispatch("SAPI.SpVoice") speaker.Speak(x )
1:31:33 code number of table 1 to 10 ⬇⬇⬇⬇ table = int(input("enter the number : ")) match table: case 1: for i in range(1, 11): print(table," x ",i," = ",table * i ) case 2: for i in range(1, 11): print(table, " x ", i, " = ", table * i) case 3: for i in range(1, 11): print(table, " x ", i, " = ", table * i) case 4: for i in range(1, 11): print(table, " x ", i, " = ", table * i) case 5: for i in range(1, 11): print(table, " x ", i, " = ", table * i) case 6: for i in range(1, 11): print(table, " x ", i, " = ", table * i) case 7: for i in range(1, 11): print(table, " x ", i, " = ", table * i) case 8: for i in range(1, 11): print(table, " x ", i, " = ", table * i) case 9: for i in range(1, 11): print(table, " x ", i, " = ", table * i) case 10: for i in range(1, 11): print(table, " x ", i, " = ", table * i) case _: print("Sorry Your Number Is Invald") print("Please Try Again")
i want to say thanks , apna college pe 1.5hour aur 10 hour video hai , par under 4 hour video aapki hai bas , so best for someone who wants to complete it in one go
1:33:12 #print table a = int(input("enter a number: ")) match a: case 1: for i in range(1,11): print(a,"*",i,"=",a*i) case 2: for i in range(1,11): print(a,"*",i,"=",a*i) case 3: for i in range(1,11): print(a,"*",i,"=",a*i) case 4: for i in range(1,11): print(a,"*",i,"=",a*i) case 5: for i in range(1,11): print(a,"*",i,"=",a*i) case 6: for i in range(1,11): print(a,"*",i,"=",a*i) case 7: for i in range(1,11): print(a,"*",i,"=",a*i) case 8: for i in range(1,11): print(a,"*",i,"=",a*i) case 9: for i in range(1,11): print(a,"*",i,"=",a*i) case 10: for i in range(1,11): print(a,"*",i,"=",a*i)
time stamp: 1:31:55 (Table quiz) num = int(input("Enter an integer number:")) s = 1 e = 11 match num: case 1: for i in range(s,e): print("1 *",i,"=",1*i) case 2: for i in range(s,e): print("2 *",i,"=",2*i) case 3: for i in range(s,e): print("3 *",i,"=",3*i) case 4: for i in range(s,e): print("4 *",i,"=",4*i) case 5: for i in range(s,e): print("5 *",i,"=",5*i) case _: print("Case not found!")
try: number = int(input('Enter a number : ')) except Exception as e: print(f'Error is {e}') match number: case 1: for nums in range(1,11): print(f'{number} * {nums} = {number*nums} ') case 2: for nums in range(1, 11): print(f'{number} * {nums} = {number * nums} ') case 3: for nums in range(1, 11): print(f'{number} * {nums} = {number * nums} ') case 4: for nums in range(1, 11): print(f'{number} * {nums} = {number * nums} ') case 5: for nums in range(1, 11): print(f'{number} * {nums} = {number * nums} ') case 6: for nums in range(1, 11): print(f'{number} * {nums} = {number * nums} ') case 7: for nums in range(1, 11): print(f'{number} * {nums} = {number * nums} ') case 8: for nums in range(1, 11): print(f'{number} * {nums} = {number * nums} ') case 9: for nums in range(1, 11): print(f'{number} * {nums} = {number * nums} ') case 10: for nums in range(1, 11): print(f'{number} * {nums} = {number * nums} ') case _: print('Sorry case not found!') better use this
Harry Sir ! You are the great person with great learning concepts. May you live long happy and joyful life. Your services to provide us such a great learning is very appreciable. Thank You Sir.
The code for Program for printing a table from 1-10 based on user input. Time stamp is 1:32:08 a = int(input("Enter the no. to make its table: ")) match a: case 1: for i in range(1,11): print(f"{a} x {i} = {a*i}") case 2: for i in range(1,11): print(f"{a} x {i} = {a*i}") case 3: for i in range(1,11): print(f"{a} x {i} = {a*i}") case 4: for i in range(1,11): print(f"{a} x {i} = {a*i}") case 5: for i in range(1,11): print(f"{a} x {i} = {a*i}") case 6: for i in range(1,11): print(f"{a} x {i} = {a*i}") case 7: for i in range(1,11): print(f"{a} x {i} = {a*i}") case 8: for i in range(1,11): print(f"{a} x {i} = {a*i}") case 9: for i in range(1,11): print(f"{a} x {i} = {a*i}") case 10: for i in range(1,11): print(f"{a} x {i} = {a*i}")
case _: print("Please enter a no. between 1 - 10.")
t = int(input("Enter the number of which you want to see table: ")) match t: case 1: for i in range(1, 11): print(t, "X", i, "=", t * i) case 2: for i in range(1, 11): print(t, "X", i, "=", t * i) case 3: for i in range(1, 11): print(t, "X", i, "=", t * i) case 4: for i in range(1, 11): print(t, "X", i, "=", t * i) case 5: for i in range(1, 11): print(t, "X", i, "=", t * i) case 6: for i in range(1, 11): print(t, "X", i, "=", t * i) case 7: for i in range(1, 11): print(t, "X", i, "=", t * i) case 8: for i in range(1, 11): print(t, "X", i, "=", t * i) case 9: for i in range(1, 11): print(t, "X", i, "=", t * i) case 10: for i in range(1, 11): print(t, "X", i, "=", t * i)
t = int(input("Enter the number of which you want to see table: ")) match t: case _: for i in range(1, 11): print(t, "X", i, "=", t * i) i guess this is the better approach if we have to use match only
@CodeWithHarry First of all Thank you for providing such an amazing content to us!! Bhaiya please move towards teaching Advanced level programming DSA in python and solve some good leetcode questions. Because these are the things people are looking for on UA-cam.
Text to Speech Command for WINDOWS is: txt = str(input("Enter anything to pronounce it: ")) if txt == "/exit": print("Exited...") break cmd = f"Powershell Add-Type -AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak('{txt}')" os.system(cmd)
You can also use Pyttsx3 module instead of this : eng = pyttsx3.init('sapi5') Voices = eng.setproperty('voices',voice[1]) eng.say("Hello ") eng.runandwait()
Harry बड़े भाई robospeaker वाले प्रोजेक्ट में हमारे window 10 में run नहीं हो रहा है लिखकर आ रहा है कि say is not recognized as an internal or external command please help me resolve my issue I am very excited to make my own robospeaker
1:31:54 # Python Program to Display the Multiplication Table number = int(input ("Enter the number: ")) print("The Multiplication Table of: ", number) for count in range(1, 11): print(number, 'x', count, '=', number * count)
@harry you were suggested to me by a friend studying for masters in US. I studied this video for a very important Interview and it helped a lot. I got a Job in a reputed firm in Mechanical Domain. Keep doing your good work. We will keep recommending you.
time stamp: 1:31:55 (Table quiz) Table quiz using if/else num = int(input("Enter a number(1-10):-")) if num == 1: for i in range(1, 11): print(f"{i} * {num} =", i * num) elif num == 2: for i in range(1, 11): print(f"{i} * {num} =", i * num) elif num == 3: for i in range(1, 11): print(f"{i} * {num} =", i * num) elif num == 4: for i in range(1, 11): print(f"{i} * {num} =", i * num) elif num == 5: for i in range(1, 11): print(f"{i} * {num} =", i * num) elif num == 6: for i in range(1, 11): print(f"{i} * {num} =", i * num) elif num == 7: for i in range(1, 11): print(f"{i} * {num} =", i * num) elif num == 8: for i in range(1, 11): print(f"{i} * {num} =", i * num) elif num == 9: for i in range(1, 11): print(f"{i} * {num} =", i * num) elif num == 10: for i in range(1, 11): print(f"{i} * {num} =", i * num) else: print("Entered number is out of (1-10) range") Table quiz using mach/case num = int(input("Enter a number(1-10):-")) match num: case 1: for i in range(1, 11): print(f"{i} * {num} =", i * num) case 2: for i in range(1, 11): print(f"{i} * {num} =", i * num) case 3: for i in range(1, 11): print(f"{i} * {num} =", i * num) case 4: for i in range(1, 11): print(f"{i} * {num} =", i * num) case 5: for i in range(1, 11): print(f"{i} * {num} =", i * num) case 6: for i in range(1, 11): print(f"{i} * {num} =", i * num) case 7: for i in range(1, 11): print(f"{i} * {num} =", i * num) case 8: for i in range(1, 11): print(f"{i} * {num} =", i * num) case 9: for i in range(1, 11): print(f"{i} * {num} =", i * num) case 10: for i in range(1, 11): print(f"{i} * {num} =", i * num) case _: print("Entered number is out of (1-10) range")
1:32:00 No = int(input("Enter yout num: ")) match No: case 1: print("case no 2") case 2: print("case no 2") case 3: print("case no 3") case 4: print("case no 4") case 5: print("case no 5") case 6: print("case no 6") case 7: print("case no 7") case 8: print("case no 8") case 9: print("case no 9") case 10: print("case no 10") case _: print("None of Match found")
import subprocess if __name__ == '__main__': print("Welcome to Robospeaker Python Project") while True: x = input("What you wan me to speak: ") if x == "q": break command = f'echo {x} | PowerShell -Command "Add-Type -AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak([Console]::In.ReadToEnd())"' subprocess.run(command, shell=True)
Bhai ye code with harry sirf logo ko scam karta h.. Isko kuch nahi ata h.. Ye banda google se copy karta h sab.. Ye simple cheese sikhata h isiliye logo ko easy lagta h aur log iske videos pasand karte h.. Pr aisa nhi h.. Bhot cheese advanced hoti h.. Ye kabhi nhi sikhata.. Aur python m ye programming level bhi simple rakhta h.. Ye sahi tarika nahi h
@@NHeroOP I did... I am working in mnc.. And I know the level of hardness.. Open ur eyes buddy and look on UA-cam, there are many guys who are making good courses.. He copied 100 days course from Angela yu, 100 days of python code bootcamp... Lots of things.. He even didn't job I guess.. As u can't survive with that level of knowledge..
Thanks a lot, Harry vai for this wonderful course. I'm your regular follower from Bangladesh. I've learned python from you. Now please please upload a tutorial on "Django A to Z with Rest API and do at least 1 project."💓🙏🙏🙏
I saw your videos first time . Harry Brother it is too good. The way you explain the concepts from a ground level is really awesome. Is there any possibility to make videos on Devops tools. Like Kubernetes , Docker, Jenkins etc.
How was this course? If you are a student, you can get free access to all JetBrains IDEs for personal use at school or at home. Use the links below:
PyCharm Community Edition - jb.gg/getPyCharm
Free Student License - jb.gg/GetStudentLicense
Love you harry bhai😊❤❤❤❤
ua-cam.com/users/shortsYpJHaD3fbng?feature=share😢
Harry sir please make a video series on DSA in c++ for placement purposes it would be very helpful ❤
Ye wala course kru ya phir 100 days of code wala Bhai ??
Harry bhaiya django course
Best teacher ever. 2 years ago, I got my first job as SDE because of this guy. Love you sir ❤❤
in which company bro you got the job can you guide?
@@Baraswal12 company band ho gyi, startup thi
@@codewithvishvajit 😂😂😂😂
@@codewithvishvajit tooo phir ab kaha job krte ho???
Bro Konsa startup tha
I am crying how easy u made it for us 😭 u r the teacher we all needed.
00:01 Learn Python quickly and easily through this video and 5 projects
05:45 Creating and running a Python project in PyCharm
17:58 Python has built-in basic datatypes and typecasting is an important concept
23:48 Python run configuration and arithmetic operators
34:47 Python packages make programming tasks easier
40:36 String slicing and string methods in Python
51:44 You can use comma in print statement to print multiple things
56:54 List methods in Python
1:08:17 Sets in Python have various methods like pop, add, union, intersection, etc.
1:13:30 A dictionary is a key value pair.
1:25:33 The program demonstrates the use of if elif else ladder and match case statements in Python.
1:31:35 Python program to print table of a number using for loop and while loop
1:44:29 Python functions and try-accept exception handling
1:50:47 Error handling is important in programming
2:03:31 Object-oriented programming is used to create classes and objects that map real-world entities.
2:09:21 Creating a project and using the os module to run a command
2:19:09 Create a weather app that fetches and speaks the current temperature of a city.
2:24:27 You can resize an image using OpenCV in Python
2:34:56 Program to resize and convert images using cv2 and Python
2:40:33 This is a PDF merger program that allows users to merge multiple PDF files.
2:51:17 Store names and encodings of known faces
2:56:15 Convert color and recognize faces using OpenCV
3:07:41 Now you can start your Python journey
bechare ne itni mehnat ki kisi ne like nahi kiya chalo mai kar deta hun 😁
@@srthacker thanks
1:31:58
a = int(input("Please enter a number between 1-10 = "))
def table(x):
for i in range(1,11):
print("Multiplication of ",x," * ",i,"= ",x*i)
match a:
case 1:
table(1)
case 2:
table(2)
case 3:
table(3)
case 4:
table(4)
case 5:
table(5)
case 6:
table(6)
case 7:
table(7)
case 8:
table(8)
case 9:
table(9)
case 10:
table(10)
case _:
print("choice should be between 1-10")
Range Kesy lagai ap ny ???
thank you
PYHTON IN HINDI 2024 ua-cam.com/play/PLL95CIzChpSLDEo4CyLv5FrkK55e6nAJM.html
@@shahabhassan5814 range mai first woh jahan se shuru karna h or end mai ek zyada jaha tak ajana h so 1 se 10 tak ke liye range(1,11) 5 se 25 tak ke liye range(5,26)
ni clta bhi answer hi de raha
Overall observation ,if you are totaly new to python ,you can learn new things and if you are known to python ,you can learn through 5 projects which starts from 2:09:00
Please whoever watching his videos, I suggest that please don't skip the ads so he get maximum benefit because he made such many courses for free 🆓 which are much better than all paid courses available at different platform
But I'm using Brave.
is it true why this much excellent i will try to watch html css javascript andi will see i joined many paid courses offline but not worked...
I didn't skip😊
hey guys a small req ,if you have still any doubt on any topic please give me a try .i am also teaching python which is currently on going .thanks
Bro ads dekhne ke paise nahi milte wo ads products buy Karne ke liye hote hai
OMG I was about to cry when I made my first project with this video.Thnxx a lot sir
help me to resolve error as say is not recognized as internal or external command
Use echo because it help in windows and say command use in macos so it's possible that u use windows OS @@dostirathi8254
1:31:56 quiz ans
number = int(input("Enter the number between 1 to 10: "))
match number:
case number:
print(number*1)
print(number*2)
print(number*3)
print(number*4)
print(number*5)
print(number*6)
print(number*7)
print(number*8)
print(number*9)
print(number*10)
print("This is the table of", number)
Apne * kyu lgaya mughe samgh nhi aaya btaoge aap
Time stamp : 1:32:00
// for printing table
number = int(input("Enter a number between 1 and 10: "))
match number:
case 1 |2 |3 |4 |5 |6 |7 |8 |9 |10:
for i in range(1, 11):
print(f"{number} * {i} = {number*i}")
case _:
print("Number is not between 1 and 10.")
@dhruv.highaf5724 this is called f string. Used for formateting a string for output
His dedication to teach programming is beyond expectation
hey guys a small req ,if you have still any doubt on any topic please give me a try .i am also teaching python which is currently on going .thanks
congratulations here from now in a, stating my journey as a python developers lets see what gonna happened in this upcoming time.......
me and my friend were not going to college since 1 month bcoz in youtube lots of content is there to learn python so we're not interested to go college I'm studying bsc data science in nizam college Hyderabad but i want to say something bro you make us inspired and learn python without going to college thanks harry.....
PYHTON IN HINDI 2024 ua-cam.com/play/PLL95CIzChpSLDEo4CyLv5FrkK55e6nAJM.html
1:31:35 Python program to print table of a number using for loop and while loop
number = int(input("Enter a number between 1 and 10: "))
match number:
case 1:
print_table(1)
case 2:
print_table(2)
case 3:
print_table(3)
case 4:
print_table(4)
case 5:
print_table(5)
case 6:
print_table(6)
case 7:
print_table(7)
case 8:
print_table(8)
case 9:
print_table(9)
case 10:
print_table(10)
case _:
print("Invalid number. Please enter a number between 1 and 10.")
time stamp : 18:24:12
running = True
while running:
print("MATHS TABLE")
num_2 = int(input("Enter the number which table you want to print (Enter 0 to close) : "))
for i in range(1 , 11):
table = num_2 * i
print(f'The table is : {num_2} * {i} = {table}')
if num_2 == 0:
running = False
congratulations on your first python project...
🤩🤩
num=int(input("Enter value of table :"))
i=1
while(i
Congrats on your first python project guys.🎉
1:31:00
Answer -
num = int(input("Enter a number: "))
match True:
case True:
print(num * 1)
print(num * 2)
print(num * 3)
print(num * 4)
print(num * 5)
print(num * 6)
print(num * 7)
print(num * 8)
print(num * 9)
print(num * 10)
b=int(input("enter the number plz: "))
for a in range(1,11):
print( b,"x",a,"=",a*b)
bhai print (b,"x",a,"=" ke baad "a*b" krna tha
Time stamp : 1:31:48
Table Quiz
while(True):
table = int(input("Enter the number from 1 to 10: "))
match table:
case 1:
for i in range(1, 11):
print(f"{table} X {i} = {table*i}")
case 2:
for i in range(1, 11):
print(f"{table} X {i} = {table*i}")
case 3:
for i in range(1, 11):
print(f"{table} X {i} = {table*i}")
case 4:
for i in range(1, 11):
print(f"{table} X {i} = {table*i}")
case 5:
for i in range(1, 11):
print(f"{table} X {i} = {table*i}")
case 6:
for i in range(1, 11):
print(f"{table} X {i} = {table*i}")
case 7:
for i in range(1, 11):
print(f"{table} X {i} = {table*i}")
case 8:
for i in range(1, 11):
print(f"{table} X {i} = {table*i}")
case 9:
for i in range(1, 11):
print(f"{table} X {i} = {table*i}")
case 10:
for i in range(1, 11):
print(f"{table} X {i} = {table*i}")
case _:
print('Match not found. Please enter the number between 1 to 10 ')
if table>10:
break
a = int(input("Enter your favorite number: "))
match a:
case a:
print([a*1,a*2,a*3,a*4,a*5,a*6,a*7,a*8,a*9,a*10])
well done@@Cosmicbroindaavd
Congratulation! I made my first Python project! Robo Speaker!!!!
In windows??
congratulation man just loving it my python journey with you
1:31:20
# write a python program to print a table of a number that lies between 1 to 10
# print_table (number):
a = int(input("
Enter a number between 1 and 10: "))
if 1
PYHTON IN HINDI 2024 ua-cam.com/play/PLL95CIzChpSLDEo4CyLv5FrkK55e6nAJM.html
This channel is growing fastly now a day... Aur ishka reason hai aapki teaching method.. lot of love for you Harry Bhai 😘 from We all Nepalese 😘
PYHTON IN HINDI 2024 ua-cam.com/play/PLL95CIzChpSLDEo4CyLv5FrkK55e6nAJM.html
WAP for printing table from 1 to 10:-
a = int (input ("Enter any number from 1 to 10:"))
list1 = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
if a == 1:
print(list1)
elif a>=2 :
for i in range(1,11):
print(f"{a} * {i} =",i*a)
else:
print("Finish")
a = int (input ("Enter any number from 1 to 10: "))
match a:
case 1:
print(a*1, a*2, a*3, a*4, a*5, a*6, a*7, a*8, a*9, a*10)
case 2:
print(a*1, a*2, a*3, a*4, a*5, a*6, a*7, a*8, a*9, a*10)
case 3:
print(a*1, a*2, a*3, a*4, a*5, a*6, a*7, a*8, a*9, a*10)
case 4:
print(a*1, a*2, a*3, a*4, a*5, a*6, a*7, a*8, a*9, a*10)
case 5:
print(a*1, a*2, a*3, a*4, a*5, a*6, a*7, a*8, a*9, a*10)
case 6:
print(a*1, a*2, a*3, a*4, a*5, a*6, a*7, a*8, a*9, a*10)
case 7:
print(a*1, a*2, a*3, a*4, a*5, a*6, a*7, a*8, a*9, a*10)
case 8:
print(a*1, a*2, a*3, a*4, a*5, a*6, a*7, a*8, a*9, a*10)
case 9:
print(a*1, a*2, a*3, a*4, a*5, a*6, a*7, a*8, a*9, a*10)
case 10:
print(a*1, a*2, a*3, a*4, a*5, a*6, a*7, a*8, a*9, a*10)
what do you think??
@@abdulrehmanshaik3582 Try this bro :
a = int(input("Enter your favorite number: "))
match a:
case a:
print([a*1,a*2,a*3,a*4,a*5,a*6,a*7,a*8,a*9,a*10])
Text to Speech Python Example for WINDOWS:
import pyttsx3
if __name__ == '__main__':
text_to_speech = pyttsx3.init()
while(True):
word = input("Enter your command: ")
if word == 'q':
break
text_to_speech.say(word)
text_to_speech.runAndWait()
NOTE: Before running the program, download and install the module, using "pip install pyttsx3" without " "
Thanks!
Thanks bro 👍windows me say ka command hi nhi run hota hai
To fir kase chalega
its not working
@@vansh5913 Error?
1:31:59
num1=int(input("Enter a number whose table is required : "))
num2=int(input("Enter a number from which number you have to multiply (1-5) : "))
match num2:
case 1:
print(num1,"x",num2,"=",num1*num2)
case 2:
print(num1,"x",num2,"=",num1*num2)
case 3:
print(num1,"x",num2,"=",num1*num2)
case 4:
print(num1,"x",num2,"=",num1*num2)
case 5:
print(num1,"x",num2,"=",num1*num2)
match case quick quiz
Who are just lend on this video ,let you know ,if someone knows python and just attracted to the word "5 project" , stop .up to 2:09:00 is revision of python .so if any want just to go project ,please start from 2:09:00 . If beginner and not know python ,best overview till 2:09:00 . So ,if you know python , don't waste two hours and go straightway to 2:09:00 .
Bro, projects build hua kya
Literally, you are amazing. I am just thinking about it 🙂 and then you uploaded this video. Thank you for this.
Appreciate your work. Your free content is better than most of the paid contents available on internet.
Harry bhai please make a complete playlist of DSA in C++ which can crack any interview... 🛐🛐🛐🛐🛐We're grateful for you.. Those who want harry bhai to create a new series of DSA in C++ like this comment and let harry bhai notice it... Loadsss of love❤❤❤ Harry bhai please give us an update.. We're waiting for it🥺🥺... At least make a paid course.. But please do it Sir... We understand only from you
@@nonstopcodingcodewithadity8238 ya this sounds good bro 😃
Yesssssss we want
DSA in Java not in CPP please
Yes we want but after jee
Yt pe pahele se hi hai bhai.
a= int(input("enter number between 1 to 10 :"))
match a:
case 1:
print(2)
case 2:
print(4)
case 3:
print(6)
case 4:
print(8)
case 5:
print(10)
case 6:
print(12)
case 7:
print(14)
case 8:
print(16)
case 9:
print(18)
case 10:
print(20)
quesion at 1:31:52
Harry sir, for match case way to print table of a number between 1 and 10 is:
t = int(input("Enter the number: "))
match t:
case 1:
print("1,2,3,4,5,6,7,8,9,10")
case 2:
print("2,4,6,8,10,12,14,16,18,20")
case 3:
print("3,6,9,12,15,18,21,24,27,30")
case 4:
print("4,8,12,16,20,24,28,32,36,40")
case 5:
print("5,10,15,20,25,30,35,40,45,50")
case 6:
print("6,12,18,24,30,36,42,48,54,60")
case 7:
print("7,14,21,28,35,42,49,56,63,70")
case 8:
print("8,16,24,32,40,48,56,64,72,80")
case 9:
print("9,18,27,36,45,54,63,72,81,90")
case 10:
print("10,20,30,40,50,60,70,80,90,100")
case _:
print("No match found")
please tell me a way to make this even better and shorter.🙏
PYHTON IN HINDI 2024 ua-cam.com/play/PLL95CIzChpSLDEo4CyLv5FrkK55e6nAJM.html
1:31:57
here is the code
a = int(input("enter the number: "))
temp = a
match a:
case temp:
for i in range(1,11):print(temp,"x",i,"=",temp*i)
Very Gooooood dear >
hey guys a small req ,if you have still any doubt on any topic please give me a try .i am also teaching python which is currently on going .thanks
बेटा 2 साल पहले भी आपने Python कि विडिओ उपलोड किया था वोह विंडोस बेस पर था .... you are really master of language not only programing language your Hindi to good ()एक दम शुध्ध ) May God Bless You 🙏🙏🙏
OMG! I was looking for a one shot python video on your channel and then I got this notification....Thank You son much Harry sir for your consistency🙏🙏
Bhai mai coding start kar rha sikhna toh ye video sahi rahega dekhna ??
@@MohitKumar-mo8oj nhi....bilkul bhi nhi.... Complete playlist waale videos dekho ya 11 hours wala one shot hai
@@pulkitsujaan thanks bhai wahi mai bhi soch rha tha
hey guys a small req ,if you have still any doubt on any topic please give me a try .i am also teaching python which is currently on going .thanks
Quick quiz of Match case statement: 1:32:00 / 3:08:45-------------------------------
"def PrintTbl():
user=int(input(f"Enter the number you want to multiply the table : "))
match user:
case 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10:
print(f"Multiplication of number {user}:")
for i in range(1, 11):
result = i * user
print(f"{user} x {i} = {result}")
case _:
print("The number is not between 1 and 10")
PrintTbl()"
Every student needs a mentor or teacher who has the ability to transform even the most challenging problems into manageable ones, making learning an empowering and enjoyable experience.
This Python Tutorial is very Helpful for us Thanks
2:16:16,
Congratulations everyone for your first Python project.
also, I am happy about my first project.
thank bro for this amazing course...
👍👍👍
bro please give solution for say thing
bro, say command did not work in Windows. if you have Windows operating system you need another command.
I am providing you my code for robo speaker.
code:
# robe speaker mini project:
import pyttsx3 as pt
engine = pt.init() # object creation
""" RATE"""
rate = engine.getProperty('rate') # getting details of current speaking rate
# print(rate) # printing current voice rate
engine.setProperty('rate', 200) # setting up new voice rate
# while True:
"""VOLUME"""
volume = engine.getProperty('volume') # getting to know current volume level (min=0 and max=1)
# print (volume) # printing current volume level
engine.setProperty('volume',1.0) # setting up volume level between 0 and 1
"""VOICE"""
voices = engine.getProperty('voices') # getting details of current voice
# engine.setProperty('voice', voices[0].id) # changing index, changes voices. o for male
# engine.setProperty('voice', voices[1].id) # changing index, changes voices. 1 for female
engine.say(text = input("Enter what you want to 'SPEAK': "))
engine.runAndWait()
engine.stop()
engine.say('My current speaking rate is ' + str(rate))
print(rate)
engine.runAndWait()
engine.stop()
engine.say('My current speaking volume is ' + str(volume))
print(volume)
engine.runAndWait()
engine.stop()
engine.say('My current speaking voice is ' + str(voices))
print(voices)
engine.runAndWait()
engine.stop()
"""Saving Voice to a file"""
engine.save_to_file('hii hello', 'test.mp3')
# engine.save_to_file('hii karan how are you tight now.', 'karan.mp3')
engine.runAndWait()
Bro can we put this project in our resume
of course, you can put it as a mini project and your first Python experience.
Windows mai pronounce karne ke liye kon sa command rahe ga?
a //= 2 will divide the value of ' a ' (4) by 2 and will return only the value before the decimal i.e. 2
a**= 2 will be ' a ' raise to ' 2 ' i.e. 4 raise to 2 which will be 16
a%= 2 will be the remainder after dividing ' a ' (4) by 2 which will be 0
@2:10
This is for windows users
import pyttsx3
print("Welcome to RoboSpeaker...")
while True:
to_speak = input("Enter what you want me to speak (or type q to quit): ")
if to_speak == 'q':
print("Goodbye...")
break
engine = pyttsx3.init()
engine.say(to_speak)
engine.runAndWait()
thank you so much bhai i had been looking for a crash course like this finally got it.
Best teacher
Harry bhai , please please sql wala 100 days course daalo . Will be very helpful . I think no one can do better than you in terms of helping struggling students.
Thnx !
hey guys a small req ,if you have still any doubt on any topic please give me a try .i am also teaching python which is currently on going .thanks
Hello Harry, came across this video and want to share that I was just polishing my python skills after a break and just revised most of the things that will help alott. Thank you so much for taking your time out for making such content and sharing on this platform.Much appreciated. Kepp sharing and wish you the best.🥰✨
Bhai ye code with harry sirf logo ko scam karta h.. Isko kuch nahi ata h.. Ye banda google se copy karta h sab.. Ye simple cheese sikhata h isiliye logo ko easy lagta h aur log iske videos pasand karte h.. Pr aisa nhi h.. Bhot cheese advanced hoti h.. Ye kabhi nhi sikhata.. Aur python m ye programming level bhi simple rakhta h.. Ye sahi tarika nahi h
@@Comparison_club tu Sharm kar Bhai.. muze experience h industry m..muze PTA h kya hoti h coding level in company..muze Mt sikha tu ..thode dusre logo k course Akbar dekh le .. thode aankhe open kar le tu..pata padega tuze ..
@@Comparison_club bhai simple cheese sikhata ha isiliye samaz pate ho tum ..thoda ande se bahar bhi nikal ke thoda research karke dekh lo .kya kya cheese hoti h..ok . I'll give u challenge to make a bot which can take a tweet and make the image and write the tweet on that image and repost it on bots account..Bhai tu agar ye banayega ..to m man jaunga ..aur ha ..total coding industry grade ki honi chaiye ....Harry jaise sikhata h vaisei nahi chaiye ... Bhai isi phase se Gaya hu m yar ..3 saal hua h muze company m Kam karte huye as data scientist...
hey guys a small req ,if you have still any doubt on any topic please give me a try .i am also teaching python which is currently on going .thanks
PYHTON IN HINDI 2024 ua-cam.com/play/PLL95CIzChpSLDEo4CyLv5FrkK55e6nAJM.html
Being Pakistani really appreciated the way you had explained all these concepts.
2:12:36 command = f"""powershell -Command "Add-Type -AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak('{x}')" """ For windows
How did you get this
@@moinuddin1010 kyo chl nhi rha ky...?
@@smallcoder7018 chal raha hai 👍
2:14:45
Robo Speaker project
I know you are windows user.
First install pyttsx3, the way you installed pip.
Run the following code for the robo speaker
import pyttsx3
def speak_line():
# Initialize the text-to-speech engine
engine = pyttsx3.init()
# Set properties (optional)
# You can uncomment these lines and modify them as needed.
# engine.setProperty('rate', 150) # Speed of speech (words per minute)
# engine.setProperty('volume', 0.9) # Volume level (0.0 to 1.0)
# Get user input
user_input = input("Enter a line to speak: ")
# Speak the user's input
engine.say(user_input)
# Wait for the speech to finish
engine.runAndWait()
if __name__ == "__main__":
speak_line()
Thanks Bhai
In project 1: 'say' is not recognized as an internal or external command,
operable program or batch file.
['say' command works on systems like macOS]
for windows Soln:
-> pip install pyttsx3
import pyttsx3
if __name__ == '__main__':
print("Welcome to RoboSpeaker version 0.1 by Kaykobad : ")
x = input("Enter what you want the system to speak: ")
engine = pyttsx3.init()
engine.say(x)
engine.runAndWait()
mera bhi run nhi ho raha plz bata dain kese krna hai
thank you so much for this
ya import hi nhi ho rha or ya engine variable zaroori bnana tha kia
i think it only works in Mac
import os
import win32com.client
while True:
x=input(f"Enter the word you want say: ")
if x == 'q':
speaker.Speak("bye bye friend")
break
speaker = win32com.client.Dispatch("SAPI.SpVoice")
speaker.Speak(x )
1:31:33 code number of table 1 to 10 ⬇⬇⬇⬇
table = int(input("enter the number : "))
match table:
case 1:
for i in range(1, 11):
print(table," x ",i," = ",table * i )
case 2:
for i in range(1, 11):
print(table, " x ", i, " = ", table * i)
case 3:
for i in range(1, 11):
print(table, " x ", i, " = ", table * i)
case 4:
for i in range(1, 11):
print(table, " x ", i, " = ", table * i)
case 5:
for i in range(1, 11):
print(table, " x ", i, " = ", table * i)
case 6:
for i in range(1, 11):
print(table, " x ", i, " = ", table * i)
case 7:
for i in range(1, 11):
print(table, " x ", i, " = ", table * i)
case 8:
for i in range(1, 11):
print(table, " x ", i, " = ", table * i)
case 9:
for i in range(1, 11):
print(table, " x ", i, " = ", table * i)
case 10:
for i in range(1, 11):
print(table, " x ", i, " = ", table * i)
case _:
print("Sorry Your Number Is Invald")
print("Please Try Again")
He had not introduced loops by then :P
that's a good code but using nested loop its of 3 lines
I am a class 12 student and wanted to learn more,been learning from him since 11th he's just awesome
Same
hey guys a small req ,if you have still any doubt on any topic please give me a try .i am also teaching python which is currently on going .thanks
i want to say thanks , apna college pe 1.5hour aur 10 hour video hai , par under 4 hour video aapki hai bas ,
so best for someone who wants to complete it in one go
Congratulation on your first project. keep it up
1:33:12
#print table
a = int(input("enter a number: "))
match a:
case 1:
for i in range(1,11):
print(a,"*",i,"=",a*i)
case 2:
for i in range(1,11):
print(a,"*",i,"=",a*i)
case 3:
for i in range(1,11):
print(a,"*",i,"=",a*i)
case 4:
for i in range(1,11):
print(a,"*",i,"=",a*i)
case 5:
for i in range(1,11):
print(a,"*",i,"=",a*i)
case 6:
for i in range(1,11):
print(a,"*",i,"=",a*i)
case 7:
for i in range(1,11):
print(a,"*",i,"=",a*i)
case 8:
for i in range(1,11):
print(a,"*",i,"=",a*i)
case 9:
for i in range(1,11):
print(a,"*",i,"=",a*i)
case 10:
for i in range(1,11):
print(a,"*",i,"=",a*i)
time stamp: 1:31:55 (Table quiz)
num = int(input("Enter an integer number:"))
s = 1
e = 11
match num:
case 1:
for i in range(s,e):
print("1 *",i,"=",1*i)
case 2:
for i in range(s,e):
print("2 *",i,"=",2*i)
case 3:
for i in range(s,e):
print("3 *",i,"=",3*i)
case 4:
for i in range(s,e):
print("4 *",i,"=",4*i)
case 5:
for i in range(s,e):
print("5 *",i,"=",5*i)
case _:
print("Case not found!")
try:
number = int(input('Enter a number : '))
except Exception as e:
print(f'Error is {e}')
match number:
case 1:
for nums in range(1,11):
print(f'{number} * {nums} = {number*nums} ')
case 2:
for nums in range(1, 11):
print(f'{number} * {nums} = {number * nums} ')
case 3:
for nums in range(1, 11):
print(f'{number} * {nums} = {number * nums} ')
case 4:
for nums in range(1, 11):
print(f'{number} * {nums} = {number * nums} ')
case 5:
for nums in range(1, 11):
print(f'{number} * {nums} = {number * nums} ')
case 6:
for nums in range(1, 11):
print(f'{number} * {nums} = {number * nums} ')
case 7:
for nums in range(1, 11):
print(f'{number} * {nums} = {number * nums} ')
case 8:
for nums in range(1, 11):
print(f'{number} * {nums} = {number * nums} ')
case 9:
for nums in range(1, 11):
print(f'{number} * {nums} = {number * nums} ')
case 10:
for nums in range(1, 11):
print(f'{number} * {nums} = {number * nums} ')
case _:
print('Sorry case not found!')
better use this
hey guys a small req ,if you have still any doubt on any topic please give me a try .i am also teaching python which is currently on going .thanks
Solution for problem at 1:31:58
u = int(input('Enter the number: '))
for i in range(1,11,1):
match i:
case i:
print(u*i)
😂 pro level cheating.
Btw case match statement in this program doesn't make any sense. But well done 😂😂🤦🏻
not the exact solution
Harry Sir ! You are the great person with great learning concepts. May you live long happy and joyful life. Your services to provide us such a great learning is very appreciable. Thank You Sir.
Kaffiro ki jubban bol raha hai.
Lanat hai.....Islam me shirk sabse bada gunah hai
@@SH-of2wpshame on you.
hey guys a small req ,if you have still any doubt on any topic please give me a try .i am also teaching python which is currently on going .thanks
PYHTON IN HINDI 2024 ua-cam.com/play/PLL95CIzChpSLDEo4CyLv5FrkK55e6nAJM.html
The code for Program for printing a table from 1-10 based on user input.
Time stamp is 1:32:08
a = int(input("Enter the no. to make its table: "))
match a:
case 1:
for i in range(1,11):
print(f"{a} x {i} = {a*i}")
case 2:
for i in range(1,11):
print(f"{a} x {i} = {a*i}")
case 3:
for i in range(1,11):
print(f"{a} x {i} = {a*i}")
case 4:
for i in range(1,11):
print(f"{a} x {i} = {a*i}")
case 5:
for i in range(1,11):
print(f"{a} x {i} = {a*i}")
case 6:
for i in range(1,11):
print(f"{a} x {i} = {a*i}")
case 7:
for i in range(1,11):
print(f"{a} x {i} = {a*i}")
case 8:
for i in range(1,11):
print(f"{a} x {i} = {a*i}")
case 9:
for i in range(1,11):
print(f"{a} x {i} = {a*i}")
case 10:
for i in range(1,11):
print(f"{a} x {i} = {a*i}")
case _:
print("Please enter a no. between 1 - 10.")
Harry bhai ..... aap devta ho hmare liye ..................Thank you so much for amazing lectures
print("Congratulations")🎉
t = int(input("Enter the number of which you want to see table: "))
match t:
case 1:
for i in range(1, 11):
print(t, "X", i, "=", t * i)
case 2:
for i in range(1, 11):
print(t, "X", i, "=", t * i)
case 3:
for i in range(1, 11):
print(t, "X", i, "=", t * i)
case 4:
for i in range(1, 11):
print(t, "X", i, "=", t * i)
case 5:
for i in range(1, 11):
print(t, "X", i, "=", t * i)
case 6:
for i in range(1, 11):
print(t, "X", i, "=", t * i)
case 7:
for i in range(1, 11):
print(t, "X", i, "=", t * i)
case 8:
for i in range(1, 11):
print(t, "X", i, "=", t * i)
case 9:
for i in range(1, 11):
print(t, "X", i, "=", t * i)
case 10:
for i in range(1, 11):
print(t, "X", i, "=", t * i)
case _:
print("Number is not under 10")
t = int(input("Enter the number of which you want to see table: "))
match t:
case _:
for i in range(1, 11):
print(t, "X", i, "=", t * i)
i guess this is the better approach if we have to use match only
@CodeWithHarry First of all Thank you for providing such an amazing content to us!! Bhaiya please move towards teaching Advanced level programming DSA in python and solve some good leetcode questions. Because these are the things people are looking for on UA-cam.
hey guys a small req ,if you have still any doubt on any topic please give me a try .i am also teaching python which is currently on going .thanks
hello i really need help in python
@@AngrenoCodes
Text to Speech Command for WINDOWS is:
txt = str(input("Enter anything to pronounce it: "))
if txt == "/exit":
print("Exited...")
break
cmd = f"Powershell Add-Type -AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak('{txt}')"
os.system(cmd)
You can also use Pyttsx3 module instead of this :
eng = pyttsx3.init('sapi5')
Voices = eng.setproperty('voices',voice[1])
eng.say("Hello ")
eng.runandwait()
@@huzaifaantule4452 Correct, but why bother using other modules when POWERSHELL can just do it fine...
THANKYOU SOOO MUCH BRO, I WAS SEARCHING FOR THIS, AGAIN THANKSSSS
@@nikhilflautist Haha, welcome...
thx man,, was looking for this
Harry बड़े भाई robospeaker वाले प्रोजेक्ट में हमारे window 10 में run नहीं हो रहा है लिखकर आ रहा है कि say is not recognized as an internal or external command please help me resolve my issue I am very excited to make my own robospeaker
vs code use mat kro
H bhai vs code me mere bhi nahi chal raha h
@@csstudent-W8fir kaha kare
So much knowledge is packed in 3 hour video ❤😊
Congratulations 🎉
congratulations harry sir ...thanku so much for helping us for adding an element
'say' is not recognized as an internal or external command,operable program batch file.
This error is showing 😢
Same
mai bhi comment mai isliye aaya taki ye error ka solution dhund saku
1:31:54
# Python Program to Display the Multiplication Table
number = int(input ("Enter the number: "))
print("The Multiplication Table of: ", number)
for count in range(1, 11):
print(number, 'x', count, '=', number * count)
time stamp 1:31:33
def mutlipleof (x):
for y in range(1, 11):
print(f"{x} * {y} = {x*y}")
@harry you were suggested to me by a friend studying for masters in US. I studied this video for a very important Interview and it helped a lot. I got a Job in a reputed firm in Mechanical Domain. Keep doing your good work. We will keep recommending you.
time stamp: 1:31:55 (Table quiz)
Table quiz using if/else
num = int(input("Enter a number(1-10):-"))
if num == 1:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
elif num == 2:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
elif num == 3:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
elif num == 4:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
elif num == 5:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
elif num == 6:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
elif num == 7:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
elif num == 8:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
elif num == 9:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
elif num == 10:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
else:
print("Entered number is out of (1-10) range")
Table quiz using mach/case
num = int(input("Enter a number(1-10):-"))
match num:
case 1:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
case 2:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
case 3:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
case 4:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
case 5:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
case 6:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
case 7:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
case 8:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
case 9:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
case 10:
for i in range(1, 11):
print(f"{i} * {num} =", i * num)
case _:
print("Entered number is out of (1-10) range")
Sir I'm from in Pakistan 🇵🇰. Sir your very nice teacher and person 😊💗
india aa jaa aur mil le harry bhai se
'say' is not recognized as an internal or external command,
operable program or batch file error in robo speaker why
my also coming this command
Congratulations on your first python project
1:32:00
No = int(input("Enter yout num: "))
match No:
case 1:
print("case no 2")
case 2:
print("case no 2")
case 3:
print("case no 3")
case 4:
print("case no 4")
case 5:
print("case no 5")
case 6:
print("case no 6")
case 7:
print("case no 7")
case 8:
print("case no 8")
case 9:
print("case no 9")
case 10:
print("case no 10")
case _:
print("None of Match found")
🎉🎉🎉🎉🥳🥳 Thanks sir we want also more projects like this in python. And I also humbled request to you to make a django web social media projects 🙏.
hey guys a small req ,if you have still any doubt on any topic please give me a try .i am also teaching python which is currently on going .thanks
In RoboSpeaker project
What is the equivalent command for "say" in windows?
i am having the same doubt
Hope u got the answer
Plz ..help 😢
yes
import subprocess
if __name__ == '__main__':
print("Welcome to Robospeaker Python Project")
while True:
x = input("What you wan me to speak: ")
if x == "q":
break
command = f'echo {x} | PowerShell -Command "Add-Type -AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak([Console]::In.ReadToEnd())"'
subprocess.run(command, shell=True)
@@shubhamkumar3166 -Thanks worked
You should do a live programming language course it would be awesome as the course would be more interactive.
Bhai ye code with harry sirf logo ko scam karta h.. Isko kuch nahi ata h.. Ye banda google se copy karta h sab.. Ye simple cheese sikhata h isiliye logo ko easy lagta h aur log iske videos pasand karte h.. Pr aisa nhi h.. Bhot cheese advanced hoti h.. Ye kabhi nhi sikhata.. Aur python m ye programming level bhi simple rakhta h.. Ye sahi tarika nahi h
@@lnstagrarm this is just a beginner getiing started course you can watch the 100 days of python series it has advance topics too
@@NHeroOP I did... I am working in mnc.. And I know the level of hardness.. Open ur eyes buddy and look on UA-cam, there are many guys who are making good courses.. He copied 100 days course from Angela yu, 100 days of python code bootcamp... Lots of things.. He even didn't job I guess.. As u can't survive with that level of knowledge..
Best teacher of th whole world thanks harry bhai
Thank you so much for this, Harry. Appreciate it!
Thanks a lot, Harry vai for this wonderful course. I'm your regular follower from Bangladesh. I've learned python from you. Now please please upload a tutorial on "Django A to Z with Rest API and do at least 1 project."💓🙏🙏🙏
All is Good but I think Replit is more comfortable than Pycharm But....Keep it up Bro!!👍🌟
2:15:50 sir mera nahi horaha say is not recognized as an internal or external command aaisa error aaraha hai
Sir window main kese karne ka
mera bhi external or internal command bta ke error de raha hai
@@hemanmoriya8237 still I didn't get the answer
@@sonypendyala3245 but I executed the program successful
Visual studio best h same function h easy to use
congratulation on learning my first Python project
thank u harry bhaiii
Me in midnight cherishing myself for my first Project 🎉🎉 Thankyou so much bhaiya
I saw your videos first time . Harry Brother it is too good. The way you explain the concepts from a ground level is really awesome. Is there any possibility to make videos on Devops tools. Like Kubernetes , Docker, Jenkins etc.
hey guys a small req ,if you have still any doubt on any topic please give me a try .i am also teaching python which is currently on going .thanks
@@AngrenoCodesi am dought
@@AngrenoCodesi am dought
PYHTON IN HINDI 2024 ua-cam.com/play/PLL95CIzChpSLDEo4CyLv5FrkK55e6nAJM.html
Dictionary was the "chaddest" part of the video😂😂😂😂
My 1st project code is not running....its saying that...'say' is not recognized as an internal or external command.
Please help what to do!!!!
same
congratulations on your first python project..
1:32:00
x= int(input("enter the number"))
i=0
match x:
case 1:
while(i
congratulation
48:50
Source Code...
num = input("Enter a number: ")
print(int(num)+6)
Congratulations the first projects robospeaker to everyone . And Thank you very much Harry Bhai .
pronounce command in windows 11 ki ya ha
congradulation for the 1st project i made by this... still moving on, its 6th day now while wathcing and practicing on python
CONGRATS OPP YOU ARE OPP
Recentally, I got my first job as junior developer in Ethia Lab Pakistan
ur the best teacher of programming in Asia
I 😮have a code for all tables by entering number.
Code is:
↓↓↓↓
i=0
a=int(input("enter a number: "))
b=10×a+1
While (i
this course is really helpful.
it improved my Python skills.
48:23
n=int(input("Enter a number:"))
print(n)