Python Tutorial in Urdu | Hindi | Learn Python 3 in 2020 - Python Complete Course in one Video

preview_player
Показать описание
In this video you will learn about Python Tutorial in Urdu | Hindi | Learn Python 3 in 2020 - Beginner to Professional Python Complete Course in one Video

Python Tutorial in Urdu | Hindi - Complete Python Course in One Video

Python is developed by Guido van Rossum. Guido van Rossum started implementing Python in 1989. Python is a very simple programming language so even if you are new to programming, you can learn python without facing any issues.

Interesting fact: Python is named after the comedy television show Monty Python’s Flying Circus. It is not named after the Python snake.

Features of Python programming language
1. Readable: Python is a very readable language.

2. Easy to Learn: Learning python is easy as this is a expressive and high level programming language, which means it is easy to understand the language and thus easy to learn.

3. Cross platform: Python is available and can run on various operating systems such as Mac, Windows, Linux, Unix etc. This makes it a cross platform and portable language.

4. Open Source: Python is a open source programming language.

5. Large standard library: Python comes with a large standard library that has some handy codes and functions which we can use while writing code in Python.

6. Free: Python is free to download and use. This means you can download it for free and use it in your application. See: Open Source Python License

7. Supports exception handling: If you are new, you may wonder what is an exception? An exception is an event that can occur during program exception and can disrupt the normal flow of program. Python supports exception handling which means we can write less error prone code and can test various scenarios that can cause an exception later on.

8. Advanced features: Supports generators and list comprehensions. We will cover these features later.

9. Automatic memory management: Python supports automatic memory management which means the memory is cleared and freed automatically. You do not have to bother clearing the memory.

Playlist:

Please Subscribe our Channel for more IT Tutorials.

Our Facebook Page Link :
Twitter Link:
Dailymotion Link:
#CompletePythonCourse
#learnPythonIn2020
#PythonTutorialinUrdu|Hindi
#pythontutorial
Рекомендации по теме
Комментарии
Автор

Thank you so much brother, this is good idea to make one video for complete course. Please keep uploading.

aliashraf
Автор

Alhamdulellah full course completed.
Very nice and useful.
An easy way to learn as begginer.
Thanks again.

AbdulWahid-fivs
Автор

Assalamualaikum sir, I just completed this video course of Python & I am really thankful to you for teaching us so well.

Bismillah-xuns
Автор

aj ma ny pehli vedio dekhi jahan apny kaha kal milin gy ALLAH hafiz to ab next 7th min sy kal start krun ga thanks bro tc

Thenextlevel
Автор

It's a very useful brother, you're teaching style is very good and efficient especially for beginners
Allah Bless you, Keep it up

MRukhshanAli
Автор

lecture 23 assignment.
#python calculator
first_number=int(input('first number= '))
number= "))
operation=(input("enter operation = "))
add="+"
sub="-"

if operation ==add:

print("result= ", result)
if operation ==sub:

print("result = ", result)

else:
print("wrong operation")

print('goodbye')

manzoorali
Автор

Bro. Congratulation for your Huge Efforts to release this video. BUT . i feel to ask whats a use of background annoying music and footer subscription call during videos which hide the bottom of screen. Music gives Airport kinda a feeling and its hard to concentrate what you explain.

pannalal
Автор

Sir a request: When people use internet 2 learn something it means they really want 2 learn NOT 2 listen music...sirf is vaja sy ap ki video skip kr raha hun k background may music boht distract kr rahi hy attention...

XXubi
Автор

sir python version 3.9.2 a gya ha aur wo install ni ho raha ha.. please guide me

pkthevlogger
Автор

Lecture 25 Assignment:
Muzzammil = int (input("Muzzammil enter your total number : "))
Obaid = int (input("Obaid enter your total number : "))
Zafar = int (input("Zafar eEnter your total number : "))

if Muzzammil > Obaid and Muzzammil > Zafar:
print("Muzzammil is at first position")
if Obaid > Zafar:
print("Obaid is at second position")
print("Zafar is at third position")
else:
print("Zafar is at second position")
print("Obaid is at third position")

if Obaid > Muzzammil and Obaid > Zafar:
print("Obaid is at first position")
if Muzzammil > Zafar:
print("Muzzammil is at second position")
print("Zafar is at third position")
else:
print("Zafar is at second position")
print("Muzzammil is at third position")

if Zafar > Muzzammil and Zafar > Obaid:
print("Zafar is at first position")
if Muzzammil > Obaid:
print("Muzzammil is at second position")
print("Obaid is at third position")
else:
print("Obaid is at second position")
print("Muzzammil is at third position")

muzzammilhussain
Автор

As salamu alaikum God bless you bro when I watched python video I was very disappointed but that was from others so i watched your video I am very happy and satisfied oh Alhmudulilah this is very easy I thought like this.God bless you once again

sadiyaalaziz
Автор

thnak u thank u sir u r the great
love u
sir bht kamal ka tetorial ha

ranaburhan
Автор

#lecture number 28
user_Name = input("please enter your User name : ")
if user_Name:
if user_Name=="Admin":
print("User name Accepted")
else:
print("incorrect user name")

else:
print("User name requaired")
Password = input("please enter your password : ")
if user_Name:
if Password:
if user_Name == "Admin":
if Password =="Mehmood":
print("login Successful")
else:
print("you enter the wrong password")
else:
print("you enter incorrect User name")
else:
print("password requaired")
else:
print("you can't enter a user name")

mehmoodulhassan
Автор

Lecture 25: Assignment code.

Trump = int(input("Mr Trump please enter your score: " ))
Biden = int(input("Mr Biden please enter your score: " ))
Kamala = int(input("Ms Kamala please enter your score: " ))

if Trump > Biden and Trump > Kamala:
print("Trump is a winner")
if Biden > Kamala:
print("Biden is not a winner but holds a second position")
print("Kamala is a straight LOSER and holds a third position")
else:
print("Biden is a loser and holds a Third position")
print("Kamala is not a winner but holds a second position")

if Biden > Trump and Biden > Kamala:
print("Biden is a winner")
if Kamala > Trump:
print("Kamala is not a winner but holds a second position")
print("Trump is a loser and holds a third position")
else:
print("Kamala is a loser and holds a third position")
print("Trump is not a winner but holds a Second position")

if Kamala > Trump and Kamala > Biden:
print("Kamala is a winner")
if Trump > Biden:
print("Trump holds a second position but didnot Win")
print("biden is a loser and holds a third position")
else:
print("Biden holds a second position and did not win")
print("Trump is a loser and holds third position")

alfinesam
Автор

Bhot bhot shukriya is video k leye.. is video se mujhe bhot kuch sikhne mila. But isme problem yeh hai k background me black colour ki jagah white colour rehta toh behtar rehta. So that it won't effects on our eyes

mohammadsameer
Автор

Asalam-o-Alikum
Sir, me ne course completed kar liye hai, ab next level pe jana hai.

muzzammilhussain
Автор

Sir jese apne bataya mene paycharm install kiya old version 32bit but jab open kiya to yeh- error launching paycharm the environment to variable java home do not point to a valid jvm installation show ker rha h koi solutions h

Rihankhan-jhob
Автор

bhai lecture number 10 mein syntac error de rha hai kun

message = """

"""
i am bilal
i am 27 years old

i am looking my better half


"""

print (message)

i am bilal
^
SyntaxError: invalid syntax

PleaseSubcribeMyChannel
Автор

sir
what is the scope of python in finance field?

zahidkhan-vbcj
Автор

i love you sir thank you very much sir make other video, just like 3dmax plz, sir i am w8ing for you.

Alikhan-lqjn