Learn Python Programming Tutorial Online Training by Durga Sir On 22-02-2018

preview_player
Показать описание
java python
python
python by durgasoft
python videos by durgasoft
Python Online Training
Learn Python
Python Tutorial
python programming Tutorial
python Programming Language Tutorial
python examples
python Advanced Tutorial
python Tutorial for Beginners with examples
python Guide
python 3.0 Tutrials
python crash course
Python Tutorial for Beginners
Python Tutorial for Absolute Beginners
Python Tutorials by durgasoft
Python Programming videos by durgasir
=========================================
You an see more Java videos following link:

Java tutorial by durga sir

Java 9 by durga sir

Java 1.8 Version New Features by Durga sir

Adv Java JDBC Tutorial by Durga sir

OCJA 1.8 Java SE 8 Programmer - I (1Z0 - 808 ) By Durga sir

Core Java by NagoorBabu sir

Advenced Java by Nagoorbabu sir

CoreJava by Ratan

Advanced Java jdbc by Ratan

Advjava tutorials - JSP by Ratan

Adv java servlets tutorial by ratan

Servlet and JSP Tutorial by anji reddy

Advanced Java Jdbc by Anjireddy

Hibernate byAnjireddy

Struts by Anjireddy

Spring by Mr.AnjiReddy

ADV JAVA by Naveen

Spring by Mr.Naveen

Hibernate by Mr. Naveen

Struts by Mr.Naveen
Рекомендации по теме
Комментарии
Автор

n=int(input('Enter the number'))
for i in range(0, n):
n=i+1
print('*'*n)

rashitiwari
Автор

Sir..way of your teaching is beautiful..easy to understand..could u plzz give some excercises

laharic
Автор

Doing a great job sir I am new to programming after i have seen your videos am getting good knowledge about Python..

venkateswarlutummala
Автор

Very nice series, each and every thing is explained in elaborative manner, Thank you so much

MrAnurag
Автор

n=int(input('enter the number of rows:'))
For i in range(n, 0, -1):
Print("*"*i)

kusumareddy
Автор

Actually, in this star pattern example, the first for loop is used to take the new line and second for loop is actually printing the stars. And this formula is used everywhere in the stars pattern kind of programs that's why we usually see extra print() statement at the end of the code, this is for the 1st for loop only.

rajnishjha
Автор

you are really great "Sir" you give all answer before rise any doubt i am learning core java form your videos ..

bhavnajain
Автор

Sir we are able to understand python easily because of you thank you can we get the pdf of this from you so that we will also get the notes of your teachings

aishggg
Автор

n = int(input("enter the number value:"))
for x in range(1, n+1):
print("x"*x)

saikrishna-ynou
Автор

Good for me, thanks durga sir your lecture is very helpful for learning python programming language
Sir plese can you provide notes....

shiwanibaghel
Автор

Hi Durga Sir,

The output of your program is incorrect. The program which you have explained for While loop is

n = int(input("Enter the Number"))
sum = 0
i = 1
while i<=n:
sum=sum+i
i+=1
print("Sum of", n, "Number is", sum)

Lets Say the number is 5, then the output is

Enter the Number5
Sum of 5 Number is 1
Sum of 5 Number is 3
Sum of 5 Number is 6
Sum of 5 Number is 10
Sum of 5 Number is 15

Please correct me. Your guidance is important.

gaurav
Автор

for i in range(0, 6):
print('*'*i)

siyagupta
Автор

at 40min: with single for loop
for i in range (1, 6):
print ("*"*i)

gpdlhvs
Автор

Hi, Sir Thank you for the videos..
You explained while loop concept with the below example....
name=" "
while name!="durga":
name=raw_input("enter name:")
print("hello, durga thanks for confirmation")

How can we write the above scenario using "if condition"...if name is not durga again it should ask for "enter name"..
Thanks in Advance

nagabhimesh
Автор

Awesome and amazing....no more words for describe.
Salute Sir

RITESHKUMAR-wlln
Автор

Super sir I will follow each and every video of u

SaiTechSolutions
Автор

name =''
pwd =''
while name!='saikrishna' and pwd!='python':
name=input("enter your name:")
pwd=input("enter password:")
print("wrong credentials entered!")
print("you are welcome#")

saikrishna-ynou
Автор

Nice python learning series Thank u so

ashishmohod
Автор

thanks for uploading this amazing Python series...

jayantakumar
Автор

for i in range(4):
for j in range(i+1):
print("*", end = " ")
print()

abhishekpes