I'm an MBA student, I don't have anything to do with coding nor I have interest in that. I came to this video , just because of the intention & effort you gave for the video. A 9 hours video with a pure interest of making a free accessible course . WELL DONE !
Bro Ungaluku ethana days bro aachu complete panna aprm ungaluku basic la theriyuma bro already ila neenga ipo scratch la irunthu start panringala bro sollunga
3:55:31 a=[ ] Print("print the number you want") n=int(input("enter number")) for i in range(1,n+1): a.append(i) print(a) sum=0 for i in a: sum=sum+i print(sum)
Here is the correct code a=[] b=int(input("Enter a num")) for i in range(1, b+1): a.append(i) print(a) sum=0 for i in a: sum=sum+i print("The sum of those numbers:",sum)
It is very useful and easy to understand. Most of the Python tutorials are in the English language. This is my first time I have seen Python in Tamil language. It saves a lot of time, and it is easy to understand quicker. In English tutorials, I have to watch it 3 or more times to understand the programming. Now, there is an easy way to learn in our first language. Kindly do more videos about MySQL, Software Design principles, etc.
3:55:27 answer: a=[] print("Enter the number that you desire") num=int(input()) sum=0 for i in range (1,num+1): a.append(i) sum=sum+i print(sum) print(a)
00:03 Summarizing Python basics and variables 22:00 Using input function to get user address 44:57 Python basics and if-else statements 1:02:08 Explaining the concept of divisibility by 3 and 5 in Python 1:23:09 Handling conditions and printing student grades based on input scores 1:32:01 Learn the basics of Python programming in Tamil. 1:54:42 Check eligibility for a loan based on salary and age 2:03:28 Summarized subtitle: True plus false equals one, one plus zero is one hour, one into zero is zero. If the salary is greater than or equal to twenty thousand, the loan amount should be less than or equal to fifty thousand for eligibility. 2:22:53 First start learning the basics of Python programming. 2:38:52 Using for loops in Python to iterate over a range of numbers. 3:02:01 Understanding the concept of remainder in Python. 3:14:13 Understanding and counting odd and even numbers in Python 3:30:44 Write a program to read ten numbers 3:47:28 Working with numbers and variables in Python 4:12:51 Print numbers from 1 to 5 using a while loop 4:29:31 Looping in Python using while loop 4:44:36 Working with collections in Python 4:57:16 Python dictionaries do not allow duplicate values and will overwrite existing values 5:23:58 Find even and odd numbers 5:33:59 Explanation of function calling in Python 5:49:42 Summarizing Python Full Course for Beginners in Tamil 5:59:59 Python tutorial covering functions and variables. 6:30:57 Summary: The video explains about the pricing, subscription, and processor specifications in Python. 6:40:27 Create a class called student with name, register number, and resistor number as attributes 7:00:26 The video discusses topics like variables, constructors, and class hierarchy. 7:09:32 Creating a calculator class and adding a function to perform addition 7:32:53 Understanding class variables and instance variables in Python 7:45:11 Python Tutorial - Python Full Course for Beginners in Tamil 8:15:32 Create a class called Animal with a method called sound that prints the animal's sound. 8:33:43 Creating classes and inheritance in Python 8:51:00 Creating a derived class called manager and its properties 8:59:15 Variable types and error handling 9:29:09 The video discusses file operations in Python
Bro nenga dheivam bro indha mari nanga college padikumbodhe yarachum solli kuduthurundha nan ippo kandipa oru nalla level ku reach agirupen... Anyway ippo nenga irukinga I am sure that I will be in good position in future because of your training. Please upload more videos we are waiting.
Completed this video in 5 days. Very useful. I don't have Instagram so I am thanking u here in the comment section itself. The highlight of this video is, u explained the function types, polymorphism, inheritance only after the learner has become familiar with basic coding. Also I really want to appreciate the idea of including the coding practice as we learn. Once again thank u so much for making this video in Tamil. Kudos to everyone for such an amazing video.😇🙏
u said most important topics because of when we do to final round of hr interview that asked them but we do know that so i will came out of that round and also that important topics of java and python ....
3:55:31 a=[] b=int(input("Enter a num")) for i in range(1, b+1): a.append(i) print(a) sum=0 for i in a: sum=sum+i print("The sum of those numbers",sum)
First of all, Thanks a lot for this video, this explains everything as simple as possible. This video is more recommendable to engineering students (first years) and beginners. This one just makes coding much more simpler and interesting as well
The way you articulate your speech and making it natural is what makes your video worth a watch! Keep going on...and you'll find yourself hitting 1 million in no time.
Vedio was very useful. All the concepts was explained in very simple method sir... Non IT people can learn python by very quickly watching your tutorials, The most important part was you explained some complicated areas with real time examples. Keep rocking... Looking forward for more videos for other programming tutorials i.e, Java, PLSQL, SQL. and finally thanks for efforts...
Good job Bro!!! I went through many TH-cam vidoes for learning python. But your channel helped me to develop an interest. The practical examples with writing the logic explanation made me understand how a code works.I did not find this in any other channel. Looking forward for other programming languages too. Thanks for your video!!!
Hi Bro, I have been struggling to understand the basic concepts of python for a while, after watching your video i am able to answer the exercise questions before you show us how. incredibly well-detailed explanations, with clear examples. Keep up the good work will spread the word about your channel. Can you post videos for terraform and cloud formation as well in the future?
Just finished watching and coding side-by-side in 3 days time (Dec 30 2024, Dec 31 2024, Jan 1 2025). Thanks John for this amazing tutorial. I've wanted to learn Python OOPS concept for long. Finally I did it! I want to Master Python and work on ML/AI/Gen AI by the end of 2025. Let's see how it goes.
Hi Bro, i have gone through many videos of courses about python none of them come close to your deep explanation. well done, actually now i'm at 2.5 hours of video duration, still lot to go, but i hope ill finish it with full learning.
Thanks a lot sir, your explanation is very clear .You have done a wonderful job, Iam not from a CS background but now I understood the programming language and i'm now able to write basic python programs because of your video.Keep up your good work.Try to make videos for data analyst course.
02:12:00 Q09 maths= int(input("Enter your Maths result:")) science= int(input("Enter your Science result:")) sinhala= int(input("Enter your Sinhala result:")) health= int(input("Enter your Health result:")) art= int(input("Enter your Art result:")) a= (maths+science+sinhala+health+art)/5 print("Your avarage is:",a) if (a
Hi bro I have 0 knowledge about python but watching this video I was learning something new...and amazed for your hardwork... thankyou and god bless you....
Table of Contents: 00:00:00 Introduction to Python 00:01:38 Variables and Datatypes 00:09:58 User Input and Casting - 00:31:01 If-else with Boolean Values 00:48:32 if-else with examples 02:21:37 for-loop Explained with
Wow! Congrats PyPro Bro! எளிய தமிழில், 10 Hour Python Capsule Course is Apt Fast Food not only for Soft Patients but also for all potentially Hungry Learners. Hats off, John.
Thank you bro intha alavuku yaaralayum theliva nadathunathu illa bro na ipathan clg first year so enaku unga video romba usefull ah iruku bro inum nerya video podunga bro plsss..... Romba useful ah irukum bro ❤🎉
Thank you so much making this video it's very useful .I have no idea about python but after watching this full series I have clear mind set about python..❤
Actually,I have to express my heartfelt appreciation for this video.i wached this video during mY semester leave for my next semester and it has proven very usefull. THANK YOU SIR
Such an amazing teacher because he succeeds at understanding the level of a beginner when explaining the concepts. In addition to that he also manages to teach the flow of execution when explaining the logic behind the codes Thank you so much !
5:53:00 We can rewrite this code like this a=int(input("Enter the value for a : ")) b=int(input("Enter the value for b :")) c=int(input("Enter the value for c ")) def add(num1,num2): return num1+num2 added=add(a,b) value=added*c print (value)
00:00:00 Introduction to Python 00:01:38 Variables and Datatypes 00:09:58 User Input and Casting - 00:31:01 If-else with Boolean Values 00:48:32 if-else with examples 02:21:37 for-loop Explained with Example 03:56:47 Nested for-loop 04:20:23 while-loop Explained 04:45:09 Python Collections - 05:10:01 Functions in Python 05:38:20 Return Keyword in Python 05:57:21 Classes and Objects 06:24:01 Constructor and Self Keyword Explained 07:14:25 Types of Class Variable 07:31:33 Types of Class Methods 07:43:56 Inheritance and its type 08:02:02 Super Keyword in Python 08:14:28 Polymorphism in Python 08:54:03 Encapsulation and Access Modifiers 09:03:16 Exception Handling in Python 09:24:33 File Handling
Bro Mobile Application Development || Object Oriented Programming || Web Technology indha maari pudhu subject ethaachum seywweengala easiaah welanguthu neenga solli thaarathu thank you for your efforts..
a, b, c, d, e = map(int, input().split()) total = sum([a, b, c, d, e]) average = total / 5 print(average) if average < 35: print("additional class is required") else: print("you are good to go")
05:31:00 user=int(input("Enter a value to see if it odd or even: ")) def findevenorodd(): if (user%2==0): print("Even") else: print("odd") findevenorodd()
In this video 01:43:00 this code you can give exactly 70 or 35 the output will be invalid score, because no 70 there is no 70. You can give =70 you then this code will work properly
Hi Bro, I have watched your video for 30 mins seriously your damn good in explaining the basic concepts. Thanks for that I will continue to watch the full video.
"Outstanding! Thank you so much. One distinctive feature of your channel, compared to others, is that you provide questions to solve immediately after the program. This approach facilitates on-the-spot practice, making it easier to complete the tasks right away. Fantastic job!"
@@GenesisImpact-c3pfirst idha therinjikonga python line by line dha execute agum.neenga confuse aga vena oru code ah epdi vena podalam(i mean methods). ippo question enna na (oru number input kudutha 1 la irundhu andha number varaikum ellam add pannum) idhula sum=0 logic padi potu dhan aganum appo dha sum na ennanu define agum and input vangarthuku oru 2nd line, adhuku apro for loop adhula range 1 la irundhu n+1 (adhavadhu input+1, yena na ippo (0,5)nu pota 4 vara dha varum)ippo 5 input nu vechikonga sum=sum+1 idhula first sum=0 appo sum=0+1 adhavadhu 1 next loop appo sum=1+2=3 adutha loop sum=3+3 idula note panningana second number (i mean 0+1_,1+2_,3+3_ naa underscore pota number lam) onnu onna add agudha adhaan sum=sum+i nu potom loop run aga run aga i um update agum like first loop la 1 second loop la 2 andha mari, apro enna print dha......NAA YEN APPEND SEKALA NA ADHU ILLAMALE NEENGA PANNALAM sum=0 n=int(input()) for i in range(0,n+1): sum=sum+i print(sum) indha mari append oru addon mari oru extra fitting. APPEND YEN IRUKU NU SOLREN, neenga "a" nu oru empty list create panringa adula indha loop irukula "i" adha "a list la sekkuringa append function vechu yen append vechi panrom na periya periya code la andha "a" list ah use pannikalam adhan, simple level la append veche theva illa
3:55:56 the answer is: a=[] n=int(input("enter any natural number : ") for i in range(1,n+1): a.append(i) print(a) Sum=0 For i in a: Sum=sum+i Print(sum)
Hi Brother, First time I completed an entire youtube course. Was very helpful . Could you please provide which book you used for reference and also share your notes for future reference. Thanks
Thank you so much for this Python Tutorial, especially in Tamil. Your explanation was so simple and crystal clear. It will be good if you join Udemy as an instructor and conduct this Course for a nominal fee, as Udemy gives a Certificate of Completion and be useful for employment purposes. There are other platforms for example Coursera too. God Bless You.
for q9 in 3:55:37 a=[ ] n=int(input("enter n")) for i in range(1,n+1): num=int(input("enter num")) a.append(num) for i in a: print("Number is:" + str(i) +"and " +"the cube of"+ str(i)+"is:", i*i*i)
I wanted to take a moment to express my sincere gratitude for the incredible Python course you taught. Your expertise, patience, and ability to break down complex concepts made the learning experience truly enjoyable and impactful. I have gained a solid understanding of Python thanks to your guidance, and I am excited to continue applying what I've learned. Thank you for your dedication and for making a significant difference in my learning journey.
1.variables and datatypes - 1:38
2. User input and casting - 9:58
3. If-else with boolean values - 31:01
4. If else with examples - 48:32
5. For-loop explained with examples - 2:21:37
6. Nested for- loop - 3:56:47
7. While-loop explained - 4:20:23
8. Python collection - 4:45:09
9. Function in python - 5:10:01
10. Return keyword in python - 5:38:20
11. Classes and objects - 5:57:21
12. Constructor and self keyword explained - 6:24:01
13. Type of class variable - 7:14:25
14. Types of class methods - 7:31:33
15. Inheritance and its type - 7:43:56
16. Super keyword in python - 8:02:02
17. Polymorphism in python - 8:14:28
18. Encapsulation and access modifiers - 8:54:03
19. Exception handling in python - 9:03:16
20. File handling - 9:24:33
Thanks bro
Hi Bro , In if else sample 5 questions if score is
@@JawaharG-v8q score=int(input("score="))
if(score
@@JawaharG-v8q use less than or equal to symbols to include 35,70 and 100
Unga video patha....python therichitu... company la python certificate keka matagala bro
Ten months ago, I watched this video that inspired my first steps in Python, and now I am a machine learning engineer.
Bro this one video is enough to learn python?
@@thaladhonij5291 no , This is 5% only (Basic ) .
@@thaladhonij5291 no bro
@@thaladhonij5291 No, it's just for beginners which covers basic foundation
@@rocky9760 bro what else we to cover or practice these topics is enough..?
I'm an MBA student, I don't have anything to do with coding nor I have interest in that. I came to this video , just because of the intention & effort you gave for the video. A 9 hours video with a pure interest of making a free accessible course . WELL DONE !
Tq bro
Hii bro
@@sarathkumarnikhil print("yenakku yedhu theriyadhu naa..... na 11th dha padikiren😅")
Bro sql kku oru class podunga bro
Bro Ungaluku ethana days bro aachu complete panna aprm ungaluku basic la theriyuma bro already ila neenga ipo scratch la irunthu start panringala bro sollunga
1:43:43
score=int(input("enter your marks : "))
if (score < 35 ) :
print ("poor student")
elif (score >= 35 and score < 70) :
print ("average student")
elif (score >= 70 and score
thank you for this comment it helped me
@@dhanushpriyan.s7378 welcome
@@dhanushpriyan.s7378which class r u
naanum ithae mari tha try panna bro😁
Super bro
3:55:31
a=[ ]
Print("print the number you want")
n=int(input("enter number"))
for i in range(1,n+1):
a.append(i)
print(a)
sum=0
for i in a:
sum=sum+i
print(sum)
This same as previous one
count = 0
for i in range(1, 101):
if i % 3 == 0 and i % 5 == 0:
count = count + 1
print(count)
could you just do the 9th program (3:55.37 ) in the for loop by using append function with that level of learning?
Here is the correct code
a=[]
b=int(input("Enter a num"))
for i in range(1, b+1):
a.append(i)
print(a)
sum=0
for i in a:
sum=sum+i
print("The sum of those numbers:",sum)
No bro your answer was wrong !
Right answer is here
String=" "
n=int(input ())
For i in range(1,n+1):
String +=str(i)
Print(string)
this is one of the best teaching style that i have ever seen before🔥🔥🔥🔥🔥🔥🔥
Who seeing in 2024
Me
Seeing
me
Bro nee yentha vooru
Me
for i in range(1,5):
print()
for j in range(1,i+1):
print("*",end="") - its for nested loop last task program
o/p
*
**
***
****
It is very useful and easy to understand. Most of the Python tutorials are in the English language. This is my first time I have seen Python in Tamil language. It saves a lot of time, and it is easy to understand quicker. In English tutorials, I have to watch it 3 or more times to understand the programming. Now, there is an easy way to learn in our first language. Kindly do more videos about MySQL, Software Design principles, etc.
awesome bro
but u any distracting will not been understand and also i only said so much disadvantages is there
Guys ennku oru doubt... Ipa intha full video ah patha... Full python course mudicha marri ah... Illa innum neriya padikanuna
Hi bro full video m parthu one week la python kathukitten thank you bro good bless you bro வாழ்க வளமுடன்
Successfully completed Python Basics!
How much days did u take to learn completedly ?
@@Pooja_7452 Honestly, It took 10 days to finish 10 hours tutorial. I was practicing more than watching. So it took 10 days!
@@RajkumarK-mb2jk Kudos bro .. I'll try tooo
@@RajkumarK-mb2jkDid yoy learn it with a computer's help?
Nanum try panren but consistency illama marupadiyum paaka vandhuruken
3:55:27 answer:
a=[]
print("Enter the number that you desire")
num=int(input())
sum=0
for i in range (1,num+1):
a.append(i)
sum=sum+i
print(sum)
print(a)
Is this right or wrong
It's work @@DeepthaEmmani
00:03 Summarizing Python basics and variables
22:00 Using input function to get user address
44:57 Python basics and if-else statements
1:02:08 Explaining the concept of divisibility by 3 and 5 in Python
1:23:09 Handling conditions and printing student grades based on input scores
1:32:01 Learn the basics of Python programming in Tamil.
1:54:42 Check eligibility for a loan based on salary and age
2:03:28 Summarized subtitle: True plus false equals one, one plus zero is one hour, one into zero is zero. If the salary is greater than or equal to twenty thousand, the loan amount should be less than or equal to fifty thousand for eligibility.
2:22:53 First start learning the basics of Python programming.
2:38:52 Using for loops in Python to iterate over a range of numbers.
3:02:01 Understanding the concept of remainder in Python.
3:14:13 Understanding and counting odd and even numbers in Python
3:30:44 Write a program to read ten numbers
3:47:28 Working with numbers and variables in Python
4:12:51 Print numbers from 1 to 5 using a while loop
4:29:31 Looping in Python using while loop
4:44:36 Working with collections in Python
4:57:16 Python dictionaries do not allow duplicate values and will overwrite existing values
5:23:58 Find even and odd numbers
5:33:59 Explanation of function calling in Python
5:49:42 Summarizing Python Full Course for Beginners in Tamil
5:59:59 Python tutorial covering functions and variables.
6:30:57 Summary: The video explains about the pricing, subscription, and processor specifications in Python.
6:40:27 Create a class called student with name, register number, and resistor number as attributes
7:00:26 The video discusses topics like variables, constructors, and class hierarchy.
7:09:32 Creating a calculator class and adding a function to perform addition
7:32:53 Understanding class variables and instance variables in Python
7:45:11 Python Tutorial - Python Full Course for Beginners in Tamil
8:15:32 Create a class called Animal with a method called sound that prints the animal's sound.
8:33:43 Creating classes and inheritance in Python
8:51:00 Creating a derived class called manager and its properties
8:59:15 Variable types and error handling
9:29:09 The video discusses file operations in Python
🎉🎉🎉
Beginner for python , Your video is very powerful supportive. Thank you
Happy to hear it's helping you!
Bro nenga dheivam bro indha mari nanga college padikumbodhe yarachum solli kuduthurundha nan ippo kandipa oru nalla level ku reach agirupen... Anyway ippo nenga irukinga I am sure that I will be in good position in future because of your training. Please upload more videos we are waiting.
Completed this video in 5 days. Very useful. I don't have Instagram so I am thanking u here in the comment section itself. The highlight of this video is, u explained the function types, polymorphism, inheritance only after the learner has become familiar with basic coding. Also I really want to appreciate the idea of including the coding practice as we learn. Once again thank u so much for making this video in Tamil.
Kudos to everyone for such an amazing video.😇🙏
how did you practice it? which tool you used?
PLEASE DO WATCH VIDEO , avar theliva solirparu, @@karthikkrishna6008
u said most important topics
because of when we do to final round of hr interview that asked them but we do know that
so i will came out of that round and also that important topics of java and python ....
Guys ennku oru doubt... Ipa intha full video ah patha... Full python course mudicha marri ah... Illa innum neriya padikanuna
@@RajeshKumar-pt8kq padikanum
Any seeing biology students 😂😢
S😅
S bro
😂
S😂
Iam bro
Bro.......ulti bro nenga epdi soldrathu vera level aa puriyuthu can't stop learning , Thanks dude
Epppaa,ivloo naal nee engaya irunthaa🙏🏻🙏🏻
We need more videos like thisss🔥🔥🔥
Waiting for your upcoming videos🔥💯
bro neega job pannitu irukingla?
@@Yahya-wm4hn job theditu iruken bro 🥲
@@Abclif-b7b enna job bro?
Naa 1st year tha padikira
Summa therinjikilame nu ketta bro
@@Yahya-wm4hn python developer bro
@@Abclif-b7b evlo naal bro aachu ungaluku
Learn panna?
4:20:00
for i in range (1,5):
for j in range (1,i+1):
print ("*", end = '')
print ()
great brudd
4:19:56
for i in range(5):
print()
for j in range(1,i+1):
print("*",end="")
Output
*
**
***.......
6@@Mathaneditz2007
a="*"
for i in range(5):
print(a*i)
Thanks bro for the answer
veralevel teaching bro 🔥🔥,advance level python programming neegaley solli thantha nalla erukum🤗🤗
3:55:31
a=[]
b=int(input("Enter a num"))
for i in range(1, b+1):
a.append(i)
print(a)
sum=0
for i in a:
sum=sum+i
print("The sum of those numbers",sum)
Unga effort ku periya value iruku bro thanks for the video
This is so worth to watch! Very professional! Keep it up 🔥
3:55:35
n=int(input("Enter the Number of term"))
For i in range(1, n+1)
Print("Number is:" + str(i) +"and " +"the cube of"+ str(i)+"is:", i*i*i)
i am a student. i find a good codeing teacher since last year. now i am very happy to have you as good teacher for me and all.
First of all, Thanks a lot for this video, this explains everything as simple as possible. This video is more recommendable to engineering students (first years) and beginners. This one just makes coding much more simpler and interesting as well
3:56:40
for i in range (1,6):
print("Number is :" +str(i) + " and cube of the " + str(i) + " is ",i*i*i)
The way you articulate your speech and making it natural is what makes your video worth a watch! Keep going on...and you'll find yourself hitting 1 million in no time.
Vedio was very useful. All the concepts was explained in very simple method sir... Non IT people can learn python by very quickly watching your tutorials, The most important part was you explained some complicated areas with real time examples. Keep rocking... Looking forward for more videos for other programming tutorials i.e, Java, PLSQL, SQL. and finally thanks for efforts...
Why IT people can't learn from this tutorial
@@bharathwaj7621 hi, please check my comments now . Some typo error corrected now
@@ganeshv2123 👍👍
🎉
Bro forloop program la q:7 mattum coding clear sola mudiyum ma bro pls
1 week before i dont know what is coding I searched for it then I found this video
after watching this video I will do something big in advanced world
Good job Bro!!! I went through many TH-cam vidoes for learning python. But your channel helped me to develop an interest. The practical examples with writing the logic explanation made me understand how a code works.I did not find this in any other channel. Looking forward for other programming languages too.
Thanks for your video!!!
True 😊
8:53:30 sollution:
class employee():
def __init__(self,name,salary):
self.name=name
self.salary=salary
class manager(employee):
def __init__(self,name,salary,department):
super(). __init__(name,salary)
self.department=department
def display(self):
print(self.name,self.salary,self.department)
m1=manager("vicky","50,000","Development")
m1.display()
Super
Nandri thala.
4:20:00
for i in range(6):
print()
for j in range(i):
print("*",end=" ")
Like for bio group students ❤😂
😅hi bro 😂😂😂
Hi😂
Hi bro 😂
Situation stalker😢
Bro coding la onuma therila bro because iam bio maths
3:55:32
a=[ ]
nat_nos=int(input())
for i in range(nat_nos+1):
if nat_nos > 0:
a.append(i)
print(sum(a))
You deserve a million views for this content! Great job 👏
3 million views
தமிழில் இந்த வீடியோவை பார்ப்பதில் மிக்க மகிழ்ச்சி சிறப்பு நண்பா💕
Guys ennku oru doubt... Ipa intha full video ah patha... Full python course mudicha marri ah... Illa innum neriya padikanuna
@@RajeshKumar-pt8kq ithu basic mattum tha innum neriya iruku ithu patha advance topic nd concept easy ahh understand aagum
Completed this 9.38.04 video, omg I can't believe. The content and way of teaching is great. Thank you so much bro.
Thank you for your kind words!!
Laptop eruntha than kathuka mudium mobile la kathuka mudiyatha @@ErrorMakesClever
05:33:00
Q3 advanced
def findpassorfail(result):
if(result=35 and result=55 and result=75 and result
May God bless these team abundantly. Really it's very useful for all students and also programmers
Hi Bro,
I have been struggling to understand the basic concepts of python for a while, after watching your video i am able to answer the exercise questions before you show us how.
incredibly well-detailed explanations, with clear examples. Keep up the good work will spread the word about your channel.
Can you post videos for terraform and cloud formation as well in the future?
Time duration how long it take bro
5:32:52 Answer:
def findpassorfail(a):
if(a>35):
print("Pass")
else:
print("Fail")
a=int(input("What is your mark?:"))
findpassorfail(a)
Just finished watching and coding side-by-side in 3 days time (Dec 30 2024, Dec 31 2024, Jan 1 2025). Thanks John for this amazing tutorial. I've wanted to learn Python OOPS concept for long. Finally I did it! I want to Master Python and work on ML/AI/Gen AI by the end of 2025. Let's see how it goes.
I'm glad the course helped, all the best in your journey with Python!
Your way of teaching is very useful for us ,school or colleges didn't important to teach coding this clear way
1:29:40 I did like this.
a = int(input("Enter your score:"))
if (a>75 and a50 and a35 and a
Hi Bro, i have gone through many videos of courses about python none of them come close to your deep explanation.
well done, actually now i'm at 2.5 hours of video duration, still lot to go, but i hope ill finish it with full learning.
worth bro
Mr. @zydbinak2561 I'm also Learning Now 😂😂😂
Thanks a lot sir, your explanation is very clear .You have done a wonderful job, Iam not from a CS background but now I understood the programming language and i'm now able to write basic python programs because of your video.Keep up your good work.Try to make videos for data analyst course.
02:12:00 Q09
maths= int(input("Enter your Maths result:"))
science= int(input("Enter your Science result:"))
sinhala= int(input("Enter your Sinhala result:"))
health= int(input("Enter your Health result:"))
art= int(input("Enter your Art result:"))
a= (maths+science+sinhala+health+art)/5
print("Your avarage is:",a)
if (a
Hi bro I have 0 knowledge about python but watching this video I was learning something new...and amazed for your hardwork... thankyou and god bless you....
Table of Contents:
00:00:00 Introduction to Python
00:01:38 Variables and Datatypes
00:09:58 User Input and Casting -
00:31:01 If-else with Boolean Values
00:48:32 if-else with examples
02:21:37 for-loop Explained with
Brilliant Bro! Just now finished your all sessions! THANKS A LOT
bro unga inthaa video paathu tha enaku python easy ah theriyuthu . thank you so much . neraya i learnt
Wow! Congrats PyPro Bro! எளிய தமிழில், 10 Hour Python Capsule Course is Apt Fast Food not only for Soft Patients but also for all potentially Hungry Learners. Hats off, John.
We watched Full Video 🎉
its Clear.
Ur a Beautiful Teacher ☺️
your video was so clear and understandable.the way u teached with ex was more useful.thanks a lot!
Bro you're teach better than my school teachers. I'm going clg 1yr it is very useful to me thankyou bro💙
05:32:00
def findpassorfail (b):
if(b>35 and 35
Thank you bro intha alavuku yaaralayum theliva nadathunathu illa bro na ipathan clg first year so enaku unga video romba usefull ah iruku bro inum nerya video podunga bro plsss..... Romba useful ah irukum bro ❤🎉
Thank you so much making this video it's very useful .I have no idea about python but after watching this full series I have clear mind set about python..❤
7:14:00
class calculator:
def __init__(self,a,b):
self.num1=a
self.num2=b
def add(self):
print("Addition:",self.num1+self.num2)
def sub(self):
print("Subtraction:",self.num1-self.num2)
def mul(self):
print("Multiplication",self.num1*self.num2)
def div(self):
print("Division:",self.num1/self.num2)
obj1=calculator(100,20)
obj1.add()
obj1.sub()
obj1.mul()
obj1.div()
I am not IT professional,
No Any Degree Holder,
Secondary school qualification but iam understanding your training
How???
@@Sarangooo123 idhuku degree Theva ila bro degree ellam wasteuh
Same...bro naanum 😊
@@Malarmalar-dk7zx12 th thaa nanum mudichirukkam degree kekkuraangalae bro
Really wonderful video. This is what everyone wants particularly in computer language. Thanks a lot Brother..Good job. Keep it up
Actually,I have to express my heartfelt appreciation for this video.i wached this video during mY semester leave for my next semester and it has proven very usefull. THANK YOU SIR
Thank you so much 😀
Such an amazing teacher because he succeeds at understanding the level of a beginner when explaining the concepts.
In addition to that he also manages to teach the flow of execution when explaining the logic behind the codes
Thank you so much !
3:02:54
Another method:
for a in range(1,6):
print(a*2)
5:53:00 We can rewrite this code like this
a=int(input("Enter the value for a : "))
b=int(input("Enter the value for b :"))
c=int(input("Enter the value for c "))
def add(num1,num2):
return num1+num2
added=add(a,b)
value=added*c
print (value)
00:00:00 Introduction to Python
00:01:38 Variables and Datatypes
00:09:58 User Input and Casting -
00:31:01 If-else with Boolean Values
00:48:32 if-else with examples
02:21:37 for-loop Explained with Example
03:56:47 Nested for-loop
04:20:23 while-loop Explained
04:45:09 Python Collections -
05:10:01 Functions in Python
05:38:20 Return Keyword in Python
05:57:21 Classes and Objects
06:24:01 Constructor and Self Keyword Explained
07:14:25 Types of Class Variable
07:31:33 Types of Class Methods
07:43:56 Inheritance and its type
08:02:02 Super Keyword in Python
08:14:28 Polymorphism in Python
08:54:03 Encapsulation and Access Modifiers
09:03:16 Exception Handling in Python
09:24:33 File Handling
Kudos, well explained ..one of the best teacher to educate the non it people,as well... thanks for ur effort...keep growing...with many thanks
Enaku actually itha eduthu padikrathu romba lazy ah irukum.... Bt Ula vanta then veliya pogave mudila.. really romba happy ah iruku... Gone deep inside... Thank u so much... And unga voice really really awesome 💯💯
1:41:21
mark=int(input(Enter your mark:))
if(mark=mark>=70):
print('good student')
elif(mark>100):
print('invalid')
Without and operator❤
Haii bro are you studying python just now..??
Ella bro eppo tha 12th pora 12th la tha python eruku ethu summa basic thane
thank you so much brother and your team! a new hope has created after watching your videos. keep posting useful videos like this.... all the best
Bro Mobile Application Development || Object Oriented Programming || Web Technology
indha maari pudhu subject ethaachum seywweengala
easiaah welanguthu neenga solli thaarathu
thank you for your efforts..
a=int(input("English:"))
b=int(input("Tamil:"))
c=int(input("Maths:"))
d=int(input("Science:"))
e=int(input("Social:"))
f=(a+b+c+d+e)/5
if(f
Super
a, b, c, d, e = map(int, input().split())
total = sum([a, b, c, d, e])
average = total / 5
print(average)
if average < 35: print("additional class is required")
else: print("you are good to go")
I think U are a pro python programmer
@@gaming_vinoth_yt1060 Naah Learnt From the Video
@@akashbhoothalingam from whom ? Map na enna ?
Thank you for making my one and only 9 hrs 38 mins 4 sec useful 😂😂😂
Athukku yenda sirikkura
05:31:00
user=int(input("Enter a value to see if it odd or even: "))
def findevenorodd():
if (user%2==0):
print("Even")
else:
print("odd")
findevenorodd()
Great Content bro.. I am really happy to see this Python Tutorial in the Tamil language. All the best for your future content. 👍
Thambi thanks , english laya padichu ithu romba nalla iruthudu kekka. Great Effort Appreciate !!
In this video 01:43:00 this code you can give exactly 70 or 35 the output will be invalid score, because no 70 there is no 70. You can give =70 you then this code will work properly
Yes bro i also confused here, searching about this 🤍
Hi Bro,
I have watched your video for 30 mins seriously your damn good in explaining the basic concepts. Thanks for that I will continue to watch the full video.
@karsstars Yes I am watching this video daily 1 hour due to work load.
3:56:45
n=int(input ())
for i in range (1,n+1):
print("The number is"+str(i)+"and the cube of"+str(i)+"is:" , i**3)
Bro 8th question kku konjam sollungalen bro
Finally completed learned something new thanks a lot brother, you are just awesome ❤
You are awesome too! Keep coding!
"Outstanding! Thank you so much. One distinctive feature of your channel, compared to others, is that you provide questions to solve immediately after the program. This approach facilitates on-the-spot practice, making it easier to complete the tasks right away. Fantastic job!"
3:56:15
a=int(input("number is:"))
for i in range(1,6):
print("number is:",i,"and the cube of the",i,"is:",i*i*i )
3:55:33
a=[]
n=int(input("your desire number is: "))
sum=0
for i in range(1,n+1):
a.append(i)
sum=sum+i
print("your sum is: ",sum)
?
Explain this I cont understand.plz help me
@@GenesisImpact-c3pfirst idha therinjikonga python line by line dha execute agum.neenga confuse aga vena oru code ah epdi vena podalam(i mean methods). ippo question enna na (oru number input kudutha 1 la irundhu andha number varaikum ellam add pannum) idhula sum=0 logic padi potu dhan aganum appo dha sum na ennanu define agum and input vangarthuku oru 2nd line, adhuku apro for loop adhula range 1 la irundhu n+1 (adhavadhu input+1, yena na ippo (0,5)nu pota 4 vara dha varum)ippo 5 input nu vechikonga sum=sum+1 idhula first sum=0 appo sum=0+1 adhavadhu 1 next loop appo sum=1+2=3 adutha loop sum=3+3 idula note panningana second number (i mean 0+1_,1+2_,3+3_ naa underscore pota number lam) onnu onna add agudha adhaan sum=sum+i nu potom loop run aga run aga i um update agum like first loop la 1 second loop la 2 andha mari, apro enna print dha......NAA YEN APPEND SEKALA NA ADHU ILLAMALE NEENGA PANNALAM
sum=0
n=int(input())
for i in range(0,n+1):
sum=sum+i
print(sum)
indha mari append oru addon mari oru extra fitting. APPEND YEN IRUKU NU SOLREN, neenga "a" nu oru empty list create panringa adula indha loop irukula "i" adha "a list la sekkuringa append function vechu yen append vechi panrom na periya periya code la andha "a" list ah use pannikalam adhan, simple level la append veche theva illa
@@santhoshvijayakumar-wp8lc thx bro
Thank you for your tutorial bro, it's very useful looking forward to another programming language like JAVA, SQL, etc...
3:20:37
# Created on iPhone.
z=int(input())
a=0
for i in range(1,z+1):
if (i%3==0 and i%5==0):
a=a+1
print("answer",a)
Really helpful John.
I am learning python by watching your videos. Thanks a lot. You are doing a good job. Congrats 🎉
You are welcome!
Any biology group students😂
vankkam paa
@@sivarajan3917 vankkam
Ayio thalaiva idho iruken 😢😂
😂😂naanu
Vanakkam thala😢😢😂😂😂
3:55:56 the answer is:
a=[]
n=int(input("enter any natural number : ")
for i in range(1,n+1):
a.append(i)
print(a)
Sum=0
For i in a:
Sum=sum+i
Print(sum)
This course didn't give me certificate to show but gave me the knowledge of python to show everyone 😊😂
Bro ithu basic la irunthu solli tharangala.. it is enough for python
@@BrazilServer-by1otyes
@@BrazilServer-by1otthis is very basic video
Most of the concepts are missing
Try seeing tamil academy python video 16hrs
Hi Brother,
First time I completed an entire youtube course. Was very helpful . Could you please provide which book you used for reference and also share your notes for future reference. Thanks
vaaa thalaivaa vaaa thalaivaaa ethukuthaan kaaathunu iruthen🤩🤩🤩
Thank you so much for this Python Tutorial, especially in Tamil. Your explanation was so simple and crystal clear. It will be good if you join Udemy as an instructor and conduct this Course for a nominal fee, as Udemy gives a Certificate of Completion and be useful for employment purposes. There are other platforms for example Coursera too. God Bless You.
Easiest explanation of Python!!! Hatsoff John!!
Ur explaining very clearly and easy to understand. Looking forward to more such videos from u. 👍
for q9 in 3:55:37
a=[ ]
n=int(input("enter n"))
for i in range(1,n+1):
num=int(input("enter num"))
a.append(num)
for i in a:
print("Number is:" + str(i) +"and " +"the cube of"+ str(i)+"is:", i*i*i)
u can also do i**3
I wanted to take a moment to express my sincere gratitude for the incredible Python course you taught. Your expertise, patience, and ability to break down complex concepts made the learning experience truly enjoyable and impactful. I have gained a solid understanding of Python thanks to your guidance, and I am excited to continue applying what I've learned.
Thank you for your dedication and for making a significant difference in my learning journey.
Glad it was helpful!
Eppa ivlo theliva yaru enaku solli thandhadhu ila pa thank you 🎉❤❤so much bro