Python Tutorial In Hindi ?
In this Python tutorial, I have explained Python in one video in Hindi with TimeStamps.
► Source Code:
►TimeStamps:
00:00 – Introduction
00:17 – Python IDE Download
00:58 – VS Code Download
01:35 – Python IDE Installation
02:09 – VS Code Installation
02:22 – Python’s Use in Modern era
02:55 – VS Code Overview
04:37 – Checking Python in path
06:06 – Coding our first python program
12:10 – Python in windows power shell
15:20 – Indentation in Python
18:03 – Comments in Python
21:35 – Modules and import statement in python
27:52 – Variables in Python
39:32 – Type-casting
44:17 – Strings
58:24 – Operators
59:50 – Lists
01:09:43 – Tuples
01:13:05 – Sets
01:17:15 – Dictionary
01:21:30 – Conditional Statements
01:27:01 – Loops (Iterative Statements)
01:33:42 – Functions
01:38:37 – OOPs (Object Oriented Programming)
01:42:40 – Conclusion & Where to go from here
This complete python tutorial will explain all the concepts of python in a single video. After watching this python tutorial in one video you will be able to write python programs without any difficulty. Python is a very powerful object oriented programming language. It is used for multiple purposes such as scripting, web development, machine learning, sentiment analysis etc. My aim in this python lecture is to provide you with a brief to the point explanation so that you can learn complete python fast.
After completing this one video python crash course, you will be able to write python programs smoothly as per the requirements!
►Click here to subscribe –
Best Hindi Videos For Learning Programming:
►Learn Python In One Video –
►Learn JavaScript in One Video –
►Learn PHP In One Video –
►Machine Learning Using Python –
►Creating & Hosting A Website (Tech Blog) Using Python –
►Advanced Python Tutorials –
►Object Oriented Programming In Python –
►Python Data Science and Big Data Tutorials –
Follow Me On Social Media
►Website (created using Flask) –
►Facebook –
►Instagram –
►Personal Facebook A/c –
Twitter –
I love the technique he teaches with practical ❤️
After creating three variables a,b and c-
a = 15
b = 50.98
c = “Mahika”
Typs casting cannot be done on string to int or float. Rest the other data types can be converted to respective data types by type casting
Regards
Thank you
Anyone else who is watching this video not for exams but for love for coding❤❤❤❤❤❤❤❤
yess im a high school student but i love coding
Yes
Yahh
Me
No I’m watching this video to pass the exams. I don’t wanna learn python cuz it sucks.
what I haven’t learned in my 4 years Bachelor’s you taught me in just 90 mins..❤ Thank You ❤
Correction at 1:07:00, pop() can also remove elements at any position of a list by using it’s index and can return the value but del doesn’t return.
00:43:18
” String->Float->Int Typcasting ”’
a=”31″
print(a,” is “,type(a))
## Converting into Float
b=float(a)
print(b,” is “,type(b))
## Converting into Int
c=int(b)
print(c,” is “,type(c))
”’
OUTPUT
31 is
31.0 is
31 is
”’
# Task of Typecast.
# Create three types of variables (int, str, float)
# Convert three of them corresponding to the other.
# Declare three variables A(int), B(str), C(float)
A = 50
B = “50”
C = 50.1
# convert A(int) to B(str)
A = str(50)
print(type(A))
# convert A(int) to C(float)
A = float(C)
print(type(A))
OUTPUT :
Quiz 1.
”’** Exponential operator”’
a=2
b=3
C=7
print(a**b)
# // Float divisor
print(c//b)
# % Modulo operator
print(a%b)
Output:
8
2
2
Sir, one video on SQL please. For beginners. A Huge respect to you.
Watched for 45 minutes and already liked it a lot and the way you are explaining is very relaxing and entertaining . Thanks for your time .
a = “18”
a = float(18)
a = int(18)
print(a) and print(type(a))
output ~ 18
A = “32”
A = int(A)
A = flot(A)
Print(type(A))
I didnt have start coding but i have listened you, your way of teaching.
I really appreciate you harry..
python=”45″
python=int(python)
python=float(python)
Therefore, through this, we can convert a string variable to an integer and a float variable respectively.
Answer to the question asked at 44:00
They said three variables
Answer to 1:11:00 – Methods of a tuple – count(), index()
I am also a teacher but you are amazing. You have great teaching skills???????????
I would rate this tutorial 3.7 out 5. because if you are looking for a refresher then it’s great. because one needs to practice examples and concepts to cover the fundamentals
@Rocky channel It’s good if you want to do revision
Complete python is included in this or not if not in which Y-channel we can cover complete course??
you are excellent speaker…one request, please create python programming on stock market strategies.
High quality channel for learning programing. 9.9 out of 10 stars bhai, thanks ⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐
s = “5”
s = int(s)
print(s+2)
Output : 7
s = float(s)
print(s+2)
Output : 7.0
s = str(s)
print(s+2)
Output: error ?