Learn Python Programming Tutorial Online Training by Durga Sir On 06-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
Рекомендации по теме
Комментарии
Автор

Sir how beautiful your teaching is.. can't express in words..you are covering the last session in brief in the beginning of every video..

mujeebrahman
Автор

Who r they who disliked this excellent content

govindpalariya
Автор

Durga Sir, you are one of the finest teacher. Thank you!

deepaksingh-nzgz
Автор

Sir your class is excellent 👍, I can't define in words ...

GKs_FunBlast
Автор

In Range:Form 1
r=range(10)
r[0:3]
Why did we get an output of (0, 3) instead of (0, 1, 2)?

jivansathe
Автор

Sir you’re sticking at the same topic for an hour, which i feel it is so lengthy..cover it under 45 mins..so that it won’t feel bored !

siddusid
Автор

sir, could you please upload the missing slides like class 24, 26, 28, 30 etc? It will be very helpful. Really the way of explanation is so nice...

manojkumarsahu
Автор

Superb explanation sir, , it's very clear sir

kaluvahymavathi
Автор

sir,
I got an error massage from interpreter,
OverflowError: cannot fit 'int' into an index-sized integer.
how to ov3ercome that error

ravikumarsingh
Автор

Many many thanks sir your teaching was awesome and iam very thankful to you sir but in youtube some of your phython videos are not found sir those are class 24, 26, 28 so please upload all missed videos sir . Now those are very important to me.

bharathkumar-diqx
Автор

Please notify if this live class will happens in future.

dileepsisodiya
Автор

Thanks a lot sir..when you explain there is no doubt which can exist !!

tapanjeetroy
Автор

sir if index is not allowed then how u use this value==> s.add('durga')

sachidanandapradhan
Автор

Hello durga sir ..
Sir can I please be provided with Python material PDF

prajwalraj
Автор

excellent video, we can change element of a tuple if the element is in list form see this
o=(10, 20, [30, 40])
print(id(o))
o[2][1]=4
print(o)
print(id(o))
and it is nice application where we can modify only some elements

nadipallisaikrishna
Автор

Hello sir i have loved your way of explanation but i just want including python what should i learn to get a job

amitsingh-jspj
Автор

Sir what are the pyhon interview questions for experienced candidate?

manishamohapatra
Автор

lovable words while respond respond aiyo

ManishKumar-miko
Автор

Hi sir. Can we do duplicate in byte or byte array?

satishkaja
Автор

>>> x=[10, 20, 34, 'niraj']
>>> type(x)
<class 'list'>
>>> s=x*2
>>> print(s)
[10, 20, 34, 'niraj', 10, 20, 34, 'niraj']
>>> id(s[0])
501212064
>>> id(s[4])
501212064
>>> c=[10, 20, 30, 10]
>>> id(c[0])
501212064
here same address is showing....then how it is mutable?

nirajtiwary