Login

Lost your password?
Don't have an account? Sign Up

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 –

https://www.educational.guru

28 comments

  1. suncity Sharma

    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

  2. Harshit Singh

    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

    ”’

  3. MD Belal Hossain

    # 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 :


  4. Mrinal Kanti Mishra

    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

Leave a Comment

Your email address will not be published. Required fields are marked *

*
*