Dear,Sir Mr. Azwar, I extend my heartfelt gratitude to you for your unwavering guidance and support throughout my learning journey. Your expertise and encouragement have been instrumental in shaping my understanding of the subject. Thank you for being a dedicated teacher and making the learning experience both enjoyable and enriching. Your commitment to excellence is truly commendable. M SAFDAR SARGODHA PAKISTAN
Sir, Your explanation and teaching skills are wonderful. The way you are explanation by using small programs thats the best way to clear the concepts. One suggestion later on please provide the technique to upload the excel file in memory for sorting the data, calculations on the rows/columns and save it to the PC by Python.
@@HADEES_NABWI The Least Common Multiple (LCM) of two numbers is the smallest multiple that is divisible by both numbers without leaving a remainder. If a number leaves a remainder when divided by either of the two numbers, then it cannot be the LCM of those numbers. This is a fundamental property of the LCM in arithmetic and is widely used in various mathematical contexts. We are just checking the smallest number that does not leave a remainder.
Assalam Alaikum Sir kya hm direct phyton language sekh skty hn ya is sa phly koi or languages sekhna hmary lye best hoga it's important question for us please reply zrur kryega.
Yes, you can get the certificate. Have you completed all the assignments from the website and Quizes, let me know, I will send you a link for the next step
Assalamualaiku, Sir for lopp and while Loop ko apnai zabardast tareeqai sai samjha with examples as follow: # Using for loop with range and generate times table vnum = int(input("Enter a Number : ")) for i in range(1,13): print(f'{vnum} x {i} = {vnum*i}') i += 1 # inplate arithmetic operator # Find LcM with while loop vMax = int(input("Enter First Number : ")) vMin = int(input("Enter Second Number : ")) lcm = vMax while lcm % vMin != 0: lcm += vMax print(f'LCM of {vMax} and {vMin} is {lcm}') # conitnuos loop with while and ending with typing of quit user_input = input("Enter a English sentence or type 'quit' to exit : ") while user_input.lower() != "quit": print(f"You type : {user_input}") user_input = input("Enter another English sentence or type 'quit' to exit : ") print("Loop exited because you typed 'quit'") JazakAllah Khairan!
AOA sir may you live long ameen I have a question, I m trying to be registered in this course but message is showing but message is showing class room is full but I am regularly watching these lectures on youtube ,may question is this these are the complete lecture of python in this playlist regards
@@kawish-urdu6378 Okey sir Thanks aloooot Your method of teaching is awesome, I,m fully interested in your classes...let me know whenever you want to enroll... I,m ready for whatever fee etc you want
Sir, Why my answer coming like that vMax: int = int(input('Enter First Number: ')) vMin = int(input('Enter Second Number')) lcm = vMax while lcm % vMin != 0: lcm += vMax print(f"lcm of {vMax} and {vMin} is {lcm}") output nter First Number: 12 Enter Second Number20 lcm of 12 and 20 is 24 lcm of 12 and 20 is 36 lcm of 12 and 20 is 48 lcm of 12 and 20 is 60 Process finished with exit code 0
Your print statement is part of the loop, which it should not be. That is, print should not be indented. Just move it back to the left side. Also, I do not understand what you have done in the first line of code. Please watch the video again.
I was stuck in for loop and while loop ...Your lesson help me a lot...جزاکم اللہ خیرا
I am glad my efforts are useful for some.
Thanks for uploading its very helpful for biggners. JazakAllah
Every lecture is informative and attractive. thank you for making these efforts for us. Allah bless you!
ماشاءاللہ
بہترین کاوش
Thank you
Dear,Sir Mr. Azwar,
I extend my heartfelt gratitude to you for your unwavering guidance and support throughout my learning journey. Your expertise and encouragement have been instrumental in shaping my understanding of the subject.
Thank you for being a dedicated teacher and making the learning experience both enjoyable and enriching. Your commitment to excellence is truly commendable.
M SAFDAR SARGODHA PAKISTAN
Thank you very much sir, your way of teaching is very simple and easy. It is very helpful in learning python for me.
God bless you sir
Jazakallah for the kind words
hi.so amaizing and easy way of teaching
thank you
Your efforts are appreciated. Final projects are awaited.
Thank you, I am working on it.
Sir, Your explanation and teaching skills are wonderful. The way you are explanation by using small programs thats the best way to clear the concepts.
One suggestion later on please provide the technique to upload the excel file in memory for sorting the data, calculations on the rows/columns and save it to the PC by Python.
Points noted
khuda apko hamesh khush rakhy
بہت اچھا ویڈیو سر
❤
Thanks
❤❤❤
Thank you
❤❤❤❤❤❤
Jazakallah
Sir,
How does the output of the first while project come up with the common of the two variables?
with the help of modulus operator. Please watch the video again, I have explained how it is finding the answer.
@@kawish-urdu6378 Modulus operator gives reminder of two values
So, here it is giving common.
I do not understand this.Sir
@@HADEES_NABWI The Least Common Multiple (LCM) of two numbers is the smallest multiple that is divisible by both numbers without leaving a remainder. If a number leaves a remainder when divided by either of the two numbers, then it cannot be the LCM of those numbers. This is a fundamental property of the LCM in arithmetic and is widely used in various mathematical contexts. We are just checking the smallest number that does not leave a remainder.
@@kawish-urdu6378
lcm += vMax
Sir,
What is its use..
Good Lecture and Easy
Assalam Alaikum
Sir kya hm direct phyton language sekh skty hn ya is sa phly koi or languages sekhna hmary lye best hoga it's important question for us please reply zrur kryega.
Python is by far the easiest language to learn. So it is best to learn Python first
I completed course but can"t give me certificate
Yes, you can get the certificate. Have you completed all the assignments from the website and Quizes, let me know, I will send you a link for the next step
Thank you, sir.
Thank you for the kind words'
Which window support this program
Assalamualaiku, Sir for lopp and while Loop ko apnai zabardast tareeqai sai samjha with examples as follow:
# Using for loop with range and generate times table
vnum = int(input("Enter a Number : "))
for i in range(1,13):
print(f'{vnum} x {i} = {vnum*i}')
i += 1 # inplate arithmetic operator
# Find LcM with while loop
vMax = int(input("Enter First Number : "))
vMin = int(input("Enter Second Number : "))
lcm = vMax
while lcm % vMin != 0:
lcm += vMax
print(f'LCM of {vMax} and {vMin} is {lcm}')
# conitnuos loop with while and ending with typing of quit
user_input = input("Enter a English sentence or type 'quit' to exit : ")
while user_input.lower() != "quit":
print(f"You type : {user_input}")
user_input = input("Enter another English sentence or type 'quit' to exit : ")
print("Loop exited because you typed 'quit'")
JazakAllah Khairan!
Assalamualaikum
Sir how can we find the hcf of two numbers by applying the same procedure..
Assalam o alikum Sir,
Sir plz f formatting k concept ko clear kr dy ya hm kb or q use krty ha?
Sure
Nice❤
Thank you
nice sir
Jazakallah for the kind words
AOA sir may you live long ameen I have a question, I m trying to be registered in this course but message is showing but message is showing class room is full but I am regularly watching these lectures on youtube ,may question is this these are the complete lecture of python in this playlist regards
Salam sir
How can I enroll myself for certificate?
Thanks
enrolments will be in Jan/Feb next year. I will announce the details via TH-cam. Please keep an eye on the channel.
@@kawish-urdu6378
Okey sir
Thanks aloooot
Your method of teaching is awesome, I,m fully interested in your classes...let me know whenever you want to enroll... I,m ready for whatever fee etc you want
Assalam o Alaikum Sir
Walaykum Salam
Assalamo aalaikumm sir
Kindly increase your font size
Sir, Why my answer coming like that
vMax: int = int(input('Enter First Number: '))
vMin = int(input('Enter Second Number'))
lcm = vMax
while lcm % vMin != 0:
lcm += vMax
print(f"lcm of {vMax} and {vMin} is {lcm}")
output
nter First Number: 12
Enter Second Number20
lcm of 12 and 20 is 24
lcm of 12 and 20 is 36
lcm of 12 and 20 is 48
lcm of 12 and 20 is 60
Process finished with exit code 0
Your print statement is part of the loop, which it should not be. That is, print should not be indented. Just move it back to the left side. Also, I do not understand what you have done in the first line of code. Please watch the video again.
@kawish-urdu6378 Thank you, sir, for your kind reply it was my mistake. Now ok
@@kawish-urdu6378I was stuck on this point too. thanks for the clarification.
8th lesson.done
Sir my result is
first valut12
Second valut20
12 and 20 is 24
12 and 20 is 36
12 and 20 is 48
12 and 20 is 60