thts true hardly anyone likes it ...u know the reason behind it its because we get engaged so deeply in ur videos tht we forget to like i liked ur video only when you said no one likes it or else i would watch the whole video bit not like it ... but im a subscribr of yours
Really you're doing outstanding work...... And thanks a lot for making such tutorials... They are very helpful... But one suggestion... Plz complete the series first whatever you have started... That will be really beneficial
harry sir tell me he use of trignometric formulas and calculations in programming in python and in which type of condition which we need to perform these type of calculations
def matrixAddition(matA,matB,m,n): outputMat = [] for i in range(0,n): row = [] for j in range(0,m): sum = matA[i][j]+matB[i][j] row.append(sum) outputMat.append(row) return outputMat def displayMatrix(matX,m,n): for i in range(0,m): print(matX[i]) def createMatrix(m,n): outputMat = [] for i in range(0,n): row = [] for j in range(0,m): inp = int(input(f"Enter [{i+1}]x[{j+1}] element for the Matrix: ")) row.append(inp) outputMat.append(row) return outputMat if __name__ == "__main__": m = int(input("Enter the numbers of columns in your matrix: ")) n = int(input("Enter the numbers of rows in your matrix: ")) matA = [] matB = [] matC = [] print(f"Enter all the {m*n} elements of Matrix A down below: ") matA = createMatrix(m,n) print(f"Enter all the {m*n} elements of Matrix B down below: ") matB = createMatrix(m,n) print(" *** Matrix A *** ") displayMatrix(matA,m,n) print(" *** Matrix B *** ") displayMatrix(matB,m,n) print("The sum of matrices A & B is: ") print(" *** Matrix C *** ") matC = matrixAddition(matA, matB, m, n) displayMatrix(matC,m,n) Have tweaked the program a bit, hope that it's easier to understand and the output more appealing to the eyes. PS: Adding a function to multiply two matrices will take it up another notch. Love you, Harry Vai!!!
Why we will not like your videos man You are the only man who is curious to teach us after spending your valuable time and valuable information. Like is a essential thing for you sir.
Children do not understand whether to take computer engineering or artificial intelligence engineering. Which one to take? And if you want to take artificial engineering, is it difficult for them?
Harry bhai mujhe laptop lena h coding ke liye,main abhi python beginers ki playlist access kr rha hu koi aacha sa laptop suggest kariye 35 se 40k tk ka , Honor ka magicbook15 kaisa rhega Plz bhai suggest me..
Mere pc me pycham community installation nehi ho Raha hai. It's showing This installation contains JetBrains Runtime 11 which does not support Microsoft Windows 32-bit version. Can you please help me🙏.
TCS NQT ke Important programming questions batao na... plllzzzzz....... Its a request!!! I'm a non-IT student n want to enter in the TCS, plzz bhai batado na yaar...
Bhaiya ji jo aapne jarvis bnavaya hai usmain mujhe problem aa rhi hai pls help,Bhaiya ji mera computer windows 7 hai aur maine usmain visual studio bhi dhala hai aur pycharm bhi dhal diya but ek toh first problem yeh aa rhi hai ki ismain ek hi speaker hai aur second speaker bol nhi rha kyo, ismain pehley terminal main yeh dikha rha tha ki pip ko upgrade kro woh bhi kr diya lekin phir bhi speaker bol nhi rha pls help.
Kya koi mere English channel ProgrammingWithHarry ko subscirbe karega?: th-cam.com/users/ProgrammingWithHarry
Yes ❤️❤️❤️ Bhai Harry .lot of respect for you ❤️
Pehle hi kr diya tha bhai
Sure Bhai
Bhaiya accept my Instagram request. Yesterday i have sent you
Ha bhai jarrur karenga subscribe
Thank you very much Harry sir, I learnt the logic and able to perform different operation like subtract/multiplication etc
Hey brother mere panga loge coding me
thts true hardly anyone likes it ...u know the reason behind it its because we get engaged so deeply in ur videos tht we forget to like i liked ur video only when you said no one likes it or else i would watch the whole video bit not like it ... but im a subscribr of yours
Really you're doing outstanding work...... And thanks a lot for making such tutorials... They are very helpful... But one suggestion... Plz complete the series first whatever you have started... That will be really beneficial
Sir Seriously mjhy assignment mila ha yeh, or ma pareshan tha, thank you so much, you are the best
Bhai tere channel per Python 🐍 dekhne ke liye tarash gaya me
Aaj Bahut din baad Harry Bhai ne kuchh Python wala post kiya hai.
Dil se Thank you Harry Bhai❤
Kar liyaa sir appkee English channel koo subscirbe aur Sir belated Happy Teachers Day
Sir please vedio for flutter in python language
Sir Maine aapke sari vedios dekhi hea👍👌👌👌👌thanks for vedios
More videos like this please 🤗🤗
And happy teacher's day
You teach me python
Great Sir!!!!
Kis kis ko GAME DEVELOPMENT in UNITY ka pura Course chahiye
Harry bhai dal do
Like karo taki harry bhai ko comment dikhe 😘😘😘😘😘😘😘😘😘
ha bhai jarur chaiye
I have already subscribed your English channel 1 year before 👍👍
Harry bhai congratulations in advance for getting 600k subscriber family
Bhai you are going to hit 600k 😊😊😊😊😊
Congratulations 👏👏👏👏
Bhai aapki videos best hoti hein
Using numpy would be easy 😁
Congrats harry bhai 600k very soon!
You are doing good job harry Bhai.
Thank you so much Sir 🙏💐😊
Love your videos sir ♥️♥️
def greet(name):
return ("Thanks\t"+ name)
code = greet("Harry")
print(code)
keep doing what you're doing bro!! big ups!!
harry sir tell me he use of trignometric formulas and calculations in programming in python and in which type of condition which we need to perform these type of calculations
All education video
Nice 👍
Awesome video
def matrixAddition(matA,matB,m,n):
outputMat = []
for i in range(0,n):
row = []
for j in range(0,m):
sum = matA[i][j]+matB[i][j]
row.append(sum)
outputMat.append(row)
return outputMat
def displayMatrix(matX,m,n):
for i in range(0,m):
print(matX[i])
def createMatrix(m,n):
outputMat = []
for i in range(0,n):
row = []
for j in range(0,m):
inp = int(input(f"Enter [{i+1}]x[{j+1}] element for the Matrix: "))
row.append(inp)
outputMat.append(row)
return outputMat
if __name__ == "__main__":
m = int(input("Enter the numbers of columns in your matrix: "))
n = int(input("Enter the numbers of rows in your matrix: "))
matA = []
matB = []
matC = []
print(f"Enter all the {m*n} elements of Matrix A down below:
")
matA = createMatrix(m,n)
print(f"Enter all the {m*n} elements of Matrix B down below:
")
matB = createMatrix(m,n)
print("
*** Matrix A ***
")
displayMatrix(matA,m,n)
print("
*** Matrix B ***
")
displayMatrix(matB,m,n)
print("The sum of matrices A & B is:
")
print("
*** Matrix C ***
")
matC = matrixAddition(matA, matB, m, n)
displayMatrix(matC,m,n)
Have tweaked the program a bit, hope that it's easier to understand and the output more appealing to the eyes.
PS: Adding a function to multiply two matrices will take it up another notch.
Love you, Harry Vai!!!
Bro higher programming ki videos bhi banao plzzz
Pure TH-cam par easy or starting point ki programming sikhayi jaati hai
Nice more data structures and algo vedio with python
Can i get a Red heart ❤️♥️❣️
Mai aapki hi videos ko dekh kar programing ko complete kar raha hoon
Harry bhaei please flutter or dart pay vedio bna do Hindi k sare vedios TH-cam k samj nhi ate buss Aap k vedios ascche say smaj ate heai
You are the best
Very nice program sir
Bss 1k aur fir mzze
Make a series on technique for problem solving
Password cracking using python ka tutorial lao please sir
Why we will not like your videos man
You are the only man who is curious to teach us after spending your valuable time and valuable information.
Like is a essential thing for you sir.
bro bht hard thanx a lot for everthing
Sir koi data science pe video banao na ki kaise kare kya kare
I wish you had this notes concept in your python playlist also... 😢😢😢
Yes bro,I agree with you
Harry bhai 👋👋
Are you using google jam board for these videos ?
Thanks Sir
Harry bhai
What is the use of 'with' statement in python
Bro great...
Great sir
Children do not understand whether to take computer engineering or artificial intelligence engineering. Which one to take? And if you want to take artificial engineering, is it difficult for them?
Sir please make a calculator with python. 😊😊😊😊😊😊😊😊😊😊
We love Hindi
if haary == "good":
print("yes")
output = yes
Harry bro I am watching your java playlist
Bhai tips and tricks jisse programming sikhna asan ho uspar video kab aygi
600 K Subs Soon
waiting for lovely java video
Hello Bhaiya, please SQL ki bhi video layiye..
Plz make video on rest api in django
Sorry bhai Java ki series abhi nahi de sakta, Me abhi python,data structures, aur Ethical Hacking pad raha hu so baad me dekhunga.👍
Best of luck
Sir python se paper generator software bana sakte kiya please reply
Sir computer organization & architecture ka bhi course lao please🙏
When will next java video arrive
Harry bhai HTML p koi zordar project pls
Haan I need also
Harry bhai..python interpreter select nahi ho paa rhi vs code me(python 3.8.5 already installed)
Please help
Sir what is linter pylint
Anyone can tell me plz why my python Symbol color in vs code see bluish only ?
Sir good afternoo
I am not able to install pyaudio please help
Can we make own font in programming languages🤔🤔🤔????
harry bhai sudoko solver banaoo python me
Nice
Like kya guru yaar aap jaan lelo..
How are u Harry bahi
IIT JEE Wale kaun yaha?
😂😁
Yes bro isme kya galat hai 😁
First comment sir🙏🙏🙏🙏
Bhai python developer banane ke liye maths aana jaruri hai kya
I am not first but i am fast
Sir string pe tough programing
Harry bhai mujhe laptop lena h coding ke liye,main abhi python beginers ki playlist access kr rha hu koi aacha sa laptop suggest kariye 35 se 40k tk ka ,
Honor ka magicbook15 kaisa rhega
Plz bhai suggest me..
Mere pc me pycham community installation nehi ho Raha hai. It's showing This installation contains JetBrains Runtime 11 which does not support Microsoft Windows 32-bit version. Can you please help me🙏.
Download software as per ur OS architecture!
My first view ❤️
TCS NQT ke Important programming questions batao na... plllzzzzz....... Its a request!!!
I'm a non-IT student n want to enter in the TCS, plzz bhai batado na yaar...
I didn't undersand A[i][j] ...what this mean exactly? Can anybody help me?
A[i][j] return value of matrix in a
A is riw
J is colomn
Bhaiya ji jo aapne jarvis bnavaya hai usmain mujhe problem aa rhi hai pls help,Bhaiya ji mera computer windows 7 hai aur maine usmain visual studio bhi dhala hai aur pycharm bhi dhal diya but ek toh first problem yeh aa rhi hai ki ismain ek hi speaker hai aur second speaker bol nhi rha kyo, ismain pehley terminal main yeh dikha rha tha ki pip ko upgrade kro woh bhi kr diya lekin phir bhi speaker bol nhi rha pls help.
Server Error (500)
Server Error (500)
this is your website issue (signup page)
signup issue
Hello harry
Bhai yrr Java ka agla video lao na jaldi
Machine learning pa or video aaya gi
Aapne hume dil nahi diya sir hume bhi do
First comment ❣
Codeigniter sikhao pls 4.0.4
❤❤
👍👍
Append kya h
Harray bhai ,thoda easy way mai sikao thoda nhi samja muje ,coz im begginer!
2k more
Bhai ye m,n tho global hai tho parameters deneki kya zarurath
i am first to comment
First Viewer
Good content in poor quality video recording