Hi Sundeep, I am planning to shift to Programming and some of my friends suggested to go with Python as here in Saudi Arabia it is going to be in demand in coming days, I am switching to this technical field after 17 years, currently I am in to administration field. I was feeling nervous to start up as I was worried that I could understand or not, but after surfing for over few days I found your tutorials, it's really amazing and very finely explained. Thank you for this.
Hello Sir, I have just started your Python course. Your way of teaching is quite simple and very easy to understand, but it only contains a theory where we will be doing some practical coding stuff or some assignments.
I am very new to the Python programming languages and have watched a few videos on your channel. I never get bored watching your videos, and they are very useful to me for learning Python. Thank you so much Sir..
Sir your way of explaining is so good ...thank you sir ....it is really very helpful for the beginners like me in Python learning, to understand.It will be little more helpful if you show us some programs as well.
hello dear Sundeep, overwhelming tutorial - very helpful and in all things Python. One question though can you put togehter the most important infos into a cheatsheet - a Summarizing Cheat Sheet to download: that would be fantastic. keep up the great work - it rocks!! best regards martin
Could you suggest some books where each and every stuff has been given, that could be helpful for beginners as well as experts also.I have a lot of interest in coding, request you to suggest a good reference. Thank you.
Hello Sundeep, you are explaining from basic that no body is doing, i have searched soo many videos but no one explained like this, But additional to this simultaneously request you to please use the application so that it will clarify very easy. Request you to do this in upcoming videos.
Hello sir , I am new on your channel..and I just try to learn python with the help of your channel..and I have a doubt... If i assign c= 5+4i then it gives me invalid syntax ...why .. If we can initialise complex number then why this problem we have to face..?
The notion of Variables in C is different from that in Python. The term Variable is not suitable in Python. In Python, we bind names to (the reference to ) the object, unlike in C. In C, Variable represent the memory. Names, r-value and l-value are associated with the memory. Only one name can be given to the memory location (perhaps you could use different pointers to point to the address). In Python, more than one name can be given to the same object. We do not worry about the memory. There is no way to get to know the memory location of an object. In some implementation id() may give the memory address where the object is stored, but the notion of id() has nothing to do with the memory.
hi sir. I have been following ur lectures right from java.Thanks a lot for ur efforts. I have a doubt sir u told that there is no type declaration in python in earlier video.so y u taught datatypes since there is no use of it??? sir plz clarify.
hi keerthivasan thanks for your interest towards our channel and share my sessions with your friends and subscribe to our channel.Keep following our channel.
sir ,i got this error print(R,"what\'s your name") Traceback (most recent call last): File "", line 1, in print(R,"what\'s your name") NameError: name 'R' is not defined
Hey Sir , Your way of teaching is very impressive . I m a beginner. Facing two issue while studying . 1- triple quote is not working. For breacking line . 2- in string formatting alignment. No movement in letters left ,right or center.
a=100, print(a),print(a),print(a) then it gives -100 as output for 'a'.here a is constant gives the same value then how can you say it is a variable?? a=("Enter the number:"),print(a) it prints "Enter the number:" we can enter any number in these
sir i am from networking background .... was struggling for basic python lessons ... thanks for your so much explanatory videos ....
The way you teach in you're tutorials doesn't bore people and some how you manage to grab attention, keep it up!!
you are very clear, when you are explaining. I passed two exams with your videos
Hi Sundeep, I am planning to shift to Programming and some of my friends suggested to go with Python as here in Saudi Arabia it is going to be in demand in coming days, I am switching to this technical field after 17 years, currently I am in to administration field. I was feeling nervous to start up as I was worried that I could understand or not, but after surfing for over few days I found your tutorials, it's really amazing and very finely explained. Thank you for this.
Hello Sir, I have just started your Python course. Your way of teaching is quite simple and very easy to understand, but it only contains a theory where we will be doing some practical coding stuff or some assignments.
Sir your teaching style quite easy
I am very new to the Python programming languages and have watched a few videos on your channel. I never get bored watching your videos, and they are very useful to me for learning Python. Thank you so much Sir..
Your way of teaching is excellent sir😀😀
I like this type of teaching and we can understand very well please do some practical programming of python it will help do how to create new codes
Sir your way of explaining is so good ...thank you sir ....it is really very helpful for the beginners like me in Python learning, to understand.It will be little more helpful if you show us some programs as well.
Hi
Thanks for your comment
In further videos you can find practical implementation along with theory. Thanks for supporting our channel.
hello dear Sundeep,
overwhelming tutorial - very helpful and in all things Python.
One question though can you put togehter the most important infos into a cheatsheet - a Summarizing Cheat Sheet to download: that would be fantastic.
keep up the great work - it rocks!!
best regards martin
what is your problem
Could you suggest some books where each and every stuff has been given, that could be helpful for beginners as well as experts also.I have a lot of interest in coding, request you to suggest a good reference.
Thank you.
Hi you can refer the book by REEMA THERAJA oxord publications. It was very good book for beginners.
Try this book 👇👇
How to think like a computer scientist: Learning with python
Wish I had a teacher like you in college
best thing watched on TH-cam
Thank you. Nice explaination
Sir your work is very helping us THANK YOU sir
Hello Sundeep, you are explaining from basic that no body is doing, i have searched soo many videos but no one explained like this, But additional to this simultaneously request you to please use the application so that it will clarify very easy. Request you to do this in upcoming videos.
Hi
I do accept it and already implemented in next videos.
Thanks for your support towards our channel. Keep following and sharing our channel
awesome video sir, helpful thanx a lot Sir
Thank sir for making this video.
Very effective way to learn
Sir I want that you make a new video how to make programms in Python language
hello Sir
Best way explaning variables in python.
What's good variable and bad variables
Osm teaching sir,,😍😍
Nice its useful for fresher's... Thank you sir...
sir are you from telugu states or other.
I am able to understand your classes very well
yes, he said some lectures are available in telugu or tamil. I dont remember exactly which one, but one of these two
Thank you Sir for the clear explanation
Nice handwriting 👌👌
Nicely explained
Best video🤩🤩🤩🤩🤩🙃thankyouuu sir🥰🥰
In data types
Under character inter, char, double, float, var char also available kadha sir
Complex number is written using 1j not i: For example, 3+4j (not 3+4i)
Hello sir ,
I am new on your channel..and I just try to learn python with the help of your channel..and I have a doubt...
If i assign c= 5+4i then it gives me invalid syntax ...why ..
If we can initialise complex number then why this problem we have to face..?
>>> i = 10
>>> c = 5+4*i
>>> print(c)
45
>>>
Actual syntax for complex number is c=a+bj. It's not c=a+bi. U'll get error if u use i instead of j.
Use c= complex(5,4)
What are the types of variables
Sir
a=5
b=6
c=a+b
Can be written as
a,b,c=5,6,a+b
Yes
What do you mean by constants in Python?
Sir u told semicolon is not used but in function without semicolon output shows error
Sir explain list,tuple,dictionary also sir
sir what about remaining three topics lists,tuples,and dictionary could u please provide link for me.
Very useful video siR😊😊😊😊
Interesting video. Thank you.
Hai sir , explaining about lists,. Tuples, dictionary
The notion of Variables in C is different from that in Python. The term Variable is not suitable in Python. In Python, we bind names to (the reference to ) the object, unlike in C. In C, Variable represent the memory. Names, r-value and l-value are associated with the memory. Only one name can be given to the memory location (perhaps you could use different pointers to point to the address). In Python, more than one name can be given to the same object. We do not worry about the memory. There is no way to get to know the memory location of an object. In some implementation id() may give the memory address where the object is stored, but the notion of id() has nothing to do with the memory.
Hi I am house mom please explain to more easy way I like it
hi sir. I have been following ur lectures right from java.Thanks a lot for ur efforts. I have a doubt sir u told that there is no type declaration in python in earlier video.so y u taught datatypes since there is no use of it??? sir plz clarify.
Hi
I just given an idea about data types. Interpreter will implicitly declare the variable according to value assigned to that.
@@sundeepsaradhi thank you sir.
Neat explanation. Thanks!
sir what about set is it a datatype
Sir,what is meant by comment,where we want to use #
Sir variables,identifiers,literals. Are same or different
Sir, boolean,range are missing in the data types
Sir, its a request why there are very less programming practice..???
Hi sir, i have given in IDLE this c=5+4i,getting below error.
SyntaxError: invalid decimal literal
Can you reply to this
Sir... If we learn Python .... C or C+ is also compulsory .... ?
No
Sir python scripting did you discussed in the python course which you uploaded
Sir can you answer me is this enough for python tutorial first years students
Hi
This is completely core topics of python and I have not covered the packages and soon I will start them.
@@sundeepsaradhi sir,when will u start the packages
sir is there difference between variables and identifiers
Variable is case sensitive
So we can write name
As always all capital letter or always all small letter
Example:name
:NAME
Thank you sir for ur lesson
Sir can your show how to perform comments with #
Nice information sir...
What is complex data type
Thank you informative
❤️thanks sir
Sir explain how to write the programs in python
super sir
wwhat about list ,tuple,ictionary
Its gone
Done well sir 👍
It was amazing
Nice sir!!!!
hi keerthivasan
thanks for your interest towards our channel and share my sessions with your friends and subscribe to our channel.Keep following our channel.
sir ,i got this error
print(R,"what\'s your name")
Traceback (most recent call last):
File "", line 1, in
print(R,"what\'s your name")
NameError: name 'R' is not defined
Don't use a comma or space. eg print(R"What\s")
👍
TQ sir
Sir your forgot in this class ,explain the string's 1,characters
very useful
Sir if l assign
a=5
b=4
a=3
Here a will replaces or not.
My doubt is here 3 is less than the value 5. So it will replaces or not
Hi rakesh
Definitely a value will be replaced with 3.
@@sundeepsaradhi Thanks sir
❤❤❤❤❤❤❤❤❤
I did not sleep while learning... 😁
A blind lie😂😂 @Madhavi Nirantar
thanx sir
please explain is python history
hello sir can u please provide the notes
I am a new student to perform programs
You didn't explain list, tuple, dictionary
Hi
I have uploaded videos on TUPLES, LISTS
you can access them in python playlist available in our channel.
Sorry I didn't upload DICTIONARY concept.
Thanks
Hey Sir ,
Your way of teaching is very impressive .
I m a beginner.
Facing two issue while studying .
1- triple quote is not working. For breacking line .
2- in string formatting alignment. No movement in letters left ,right or center.
Sir ap dono language me padha diya karo
a=100, print(a),print(a),print(a) then it gives -100 as output for 'a'.here a is constant gives the same value then how can you say it is a variable??
a=("Enter the number:"),print(a) it prints "Enter the number:" we can enter any number in these
The value of 'a' can be changed.
String formatting in not working properly sir
,...
Instead print,use format .It will work.He made a mistake in last session.
Ex.format("hello",">30")
It will work with format but not with print.
@@utpalnishat8507 print(format("hello","
Sir what is lower case and upper case???
हिंदी में पोस्ट कर दीजिये
Quality of video is unavailable
I added you on WhatsApp but could reply me
Thanks sir