Hi Team Greetings, please make a tutorial on Django with multiple projects. As it is a bit confusing for beginners, please explain the subject deeply. It's my kind request. Thanks in advance.
1. In example of class your'e doing many things in non pythonic way. First instead of setting class attributes name and age, you should create __init__ method which initializes these two arguments for each object. Then to safely get objects and set them you should write pyhonic getters and setters: ```python class Human: def __init__(self, name, age): self._name = name self._age = age @property def name(self): return self._name @name.setter def name(self, value): if value: self._name = value ``` 2. __init__() method is not a Constructor! It's initializer method. On object creation __new__() method is called first then __init__(). 3. The convention is to name classes with first uppercase letter like: Human, Person, Student .... 4. Another good practice for opening a file is to use context manager: ```python with open("file.txt") as f: f.read() ``` 5. Instead of `count = count + 1` write: `count += 1`
📝Following topics are covered in this video: Python Job Trend - 00:38 Basic Questions - 1:10 Questions on OOPS - 5:27 Questions on NumPy - 16:02 Questions on Pandas - 22:17 File Handling in Python - 31:11 Lambda Function in Python - 32:05 Questions on Matplotlib - 33:23 Module in Python - 37:47 Random Questions - 38:47 Machine Learning with Python - 49:16
Hi@vineeth GVKOf course Python is the top programming language used in AI, Machine Learning, Deep Learning and Data Science at large. Because of the extensive libraries it has which can be used for data analysis, it is the top choice among developers. There is a huge demand for Python programmers across the globe. :)
19:32 np.sum axis=1 21:05 np.argsort descending order. 30:30 in pd, count na. 39:24 random.shuffle 43:10 This doesn't work in a list, but only for an np.array. for list, we need to use lambda. 44:10 np.intersect1d 46:02 pd.series에서 capitalize 47:27 length of a string inside pd.series. 48:54 rename the field in a df
Hi Harsh, thanks for the comment. Sure, will forward the topic to the respective team and will upload the video soon. Please subscribe to Intellipaat channel & press the bell icon so that you don't miss that video from us.
Excellent video a good wrap up of what I did till now also a good revision before interview. Excellent work Keep up the work and bring 1 - 2 more such question sets which will be really very helpful before job interview. Whoa! you got one subscriber! :)
@BIKASH MAHATO We do have a video on data structures and algorithms in python, you can check it out here ----> ruclips.net/video/yp-2F2OUJJg/видео.html
Sir You're actually Printing all the things with print function so what is the use of inheritance and all . check part of the video at 15:00. because if you did not even used any class or any constructor. whatever written in print will anyway going to print na
May i know answer of these two question: what command is used to output text from both the python shell and within a python module? when using the python shell and code block, what triggers the interpreter to begin evaluating a block of code?
when someone says __init__ is a constructor.. you are out Immediately. (init: name itself says that it is to initialize. and not to construct the object. people from JAVA usually tend to apply their talents to python. But, please do not do so.
1:31 Story to remember it raise if nonlocal from global lambda is not in class break True or False except finally else del try return and pass None as def continue for asset import elif raise [30 key words] True, False, None only first letter capital
Hello sir good morning I'm a fresher interesting for software sector which language is choose for better opportunities in future like Java,python,javascript..etc...pls tell me sir
@@Intellipaat ok sir tqu so much but so many peoples to go in Java sector good future when compared to Python I'm fully confusing tqu sir for ur information
It's good that you pointed out the issues with this tutorial although when you criticize someone or something you should also suggest better options than the thing that you are criticizing.
Sure, will forward the topic to the respective team and will upload the video soon. Please subscribe to Intellipaat channel & press the bell icon so that you don't miss that video from us.
@@Hrk25s I am far from being much better, but the advice is for tutorial to be much better because as python's peps expose, conventions are important for python so for ınterviewers.
Hi Sujit, sure will forward the topic to the respective team and will upload the video soon. Please subscribe to Intellipaat channel & press the bell icon so that you don't miss that video from us. :)
it depends on the environment. it will only print it the way he showed it if you are in the Jupiter environment like he is or in the command prompt python environment
Hi Samanwita, the team is working on this video. It will be uploaded very soon. Please subscribe to Intellipaat channel & press the bell icon so that you don't miss that video from us. :)
In the replacing odd elements with -1 for a numpy array, I think you should've explained how the syntax works. So if you have an numpy array arr1 = np.arange(10,100,5) [10 15 20 25 30 35 40 45 50 55 60 65 70 75 80 85 90 95] and you perform the following: arr1%2==1 it will return you a list of boolean values that satisfies the condition like this: [False True False True False True False True False True False True False True False True False True] now doing this will replace the elements with -1 wherever the condition lies to be True arr1[arr1%2==1]=-1 [10 -1 20 -1 30 -1 40 -1 50 -1 60 -1 70 -1 80 -1 90 -1]
Hi, there is a separate tutorial we are working on Java Interview Questions. It will be uploaded on Sunday, 4th Aug. Please subscribe to Intellipaat channel & press the bell icon so that you don't miss that video from us. :)
Video to tune badia banai h ache se learn karke , but initially.. you had done mistake.... Angular is not programming language. It's framework of JavaScript.🤐
Sir plz don't mind, beside ML , ALL ques can solve any 10+2 CBSE students, sir this type of question asked then every one become software engineer.plz guide audience correctly
Guys, which technology you want to learn from Intellipaat? Comment down below and let us know so we can create in depth video tutorials for you.:)
guys plz upload java new features and spring, springboot
Yes Rahul. Next week will definitely try.:)
Hi@@SinghRahul-, we have uploaded spring tutorial. Here's the link: ruclips.net/video/y0Z1qFvfzTs/видео.html :)
Hi Team Greetings,
please make a tutorial on Django with multiple projects. As it is a bit confusing for beginners, please explain the subject deeply. It's my kind request. Thanks in advance.
Big data & Hadoop
1. In example of class your'e doing many things in non pythonic way. First instead of setting class attributes name and age, you should create __init__ method which initializes these two arguments for each object. Then to safely get objects and set them you should write pyhonic getters and setters:
```python
class Human:
def __init__(self, name, age):
self._name = name
self._age = age
@property
def name(self):
return self._name
@name.setter
def name(self, value):
if value:
self._name = value
```
2. __init__() method is not a Constructor! It's initializer method. On object creation __new__() method is called first then __init__().
3. The convention is to name classes with first uppercase letter like: Human, Person, Student ....
4. Another good practice for opening a file is to use context manager:
```python
with open("file.txt") as f:
f.read()
```
5. Instead of `count = count + 1` write: `count += 1`
Hi how to contact you I too prparing python myself to create an application
Why would you use these single underscores in this example? It just makes the code longer without any need for it
📝Following topics are covered in this video:
Python Job Trend - 00:38
Basic Questions - 1:10
Questions on OOPS - 5:27
Questions on NumPy - 16:02
Questions on Pandas - 22:17
File Handling in Python - 31:11
Lambda Function in Python - 32:05
Questions on Matplotlib - 33:23
Module in Python - 37:47
Random Questions - 38:47
Machine Learning with Python - 49:16
Hi@vineeth GVKOf course Python is the top programming language used in AI, Machine Learning, Deep Learning and Data Science at large. Because of the extensive libraries it has which can be used for data analysis, it is the top choice among developers. There is a huge demand for Python programmers across the globe. :)
Right. :)
ruclips.net/video/5TP0GzEf-bI/видео.html
Python important question with answers
ruclips.net/video/5TP0GzEf-bI/видео.html
😢🎉😊😢😅
19:32 np.sum axis=1
21:05 np.argsort descending order.
30:30 in pd, count na.
39:24 random.shuffle
43:10 This doesn't work in a list, but only for an np.array. for list, we need to use lambda.
44:10 np.intersect1d
46:02 pd.series에서 capitalize
47:27 length of a string inside pd.series.
48:54 rename the field in a df
Your Pronunciation is awesome , perfectly audible
Algorithms in Python !! If possible , please make a video on this Topic
Hi Harsh, thanks for the comment. Sure, will forward the topic to the respective team and will upload the video soon. Please subscribe to Intellipaat channel & press the bell icon so that you don't miss that video from us.
3.22
Python version 3.7, dictionaries are ordered. In Python 3.6 and earlier, dictionaries are unordered.
one of the best videos on Python👌
@bnl0047 Glad you think so! Do like, share & subscribe to our channel to get updates on upcoming videos.
Most informative questions..👍
Glad it was helpful! Do like, share & subscribe to our channel to get updates on upcoming videos.
Plz make a vedio on phyton questions for machine learning
@Ashu lohar Do like, share & subscribe to our channel to get updates on upcoming videos.
Please make a videos tutorials on data structures with python
@Umang Chaudhary Do like, share & subscribe to our channel to get updates on upcoming videos.
Superb mindblowing fantabulous phenomenal i never thought this easy it would be to understand Python. Thanks a lot.
@Hemavathi Murari Glad you liked it 😊 Do like, share & subscribe to our channel to get updates on upcoming videos.
Thank You very much, one of useful courses on python.
@CH19 029 Chandan Mansani Glad it was helpful! Do like, share & subscribe to our channel to get updates on upcoming videos.
This lecture is really helpful.. Thanks a lot
Damm......................!! Bro. what a session. It too good to device everything before the interview. Keep up the good work
Glad you enjoyed it! Keep learning with Intellipaat😊
Thank you so much sir your teaching process is very good 😀
Thanks and welcome @Mamta Kumari Do like, share & subscribe to our channel to get updates on upcoming videos.
@@Intellipaat yes's sir 😀
no words can explain how how good your videos are
Glad you liked it. Keep learning with Intellipaat😊
@@Intellipaat sure sir
Which software use in this video can you tell me plz...i use idle and online compiler but my every output wrong
Excellent video a good wrap up of what I did till now also a good revision before interview. Excellent work Keep up the work and bring 1 - 2 more such question sets which will be really very helpful before job interview. Whoa! you got one subscriber! :)
Thanks, will do!
you are really a good teacher, kindly upload a tutorial for beginners.
Will do soon
Please make video on data structures and algorithms in python
@BIKASH MAHATO We do have a video on data structures and algorithms in python, you can check it out here ----> ruclips.net/video/yp-2F2OUJJg/видео.html
to advance level in this video is escalated too quickly altho the difficulty is maintained in basic throughout the video . well done 😄
Very very informative video. Thank you for sharing this valuable video and explaining everything in details.
Glad it was helpful! @Swapnil Singh Do like, share & subscribe to our channel to get updates on upcoming videos.😊
Sparta sir..am Ur big fan 😍
Sir You're actually Printing all the things with print function so what is the use of inheritance and all . check part of the video at 15:00. because if you did not even used any class or any constructor. whatever written in print will anyway going to print na
This helped a lot, thanks!
Glad it was helpful! Do like, share & subscribe to our channel to get updates on upcoming videos.
Thanks a lot
Most welcome @Abdullah Al Nayem Do like, share & subscribe to our channel to get updates on upcoming videos.
The video is really informative, Thanks to you.
Glad it was helpful! @Ayush Sharma Do like, share & subscribe to our channel to get updates on upcoming videos.
Bhaiya plzz...make a video series on datastructures !!
Sure. Noted. Will upload soon. 🙂
Really best channel for learning..
Thanks for making such a good videos
Thanks and welcome🙂
1:11 starting time
Yes Ravi, please watch the complete video to learn Python in Detail😊
May i know answer of these two question:
what command is used to output text from both the python shell and within a python module?
when using the python shell and code block, what triggers the interpreter to begin evaluating a block of code?
1. print()
2. A blank line
Great sir ap python bhut achha teach krte 🤗
Thanks 🤗
Pdf should be provided along with video….
We will upload it soon:- )
@@Intellipaat thanks for a nice reply :)
MORE OF THESE PLEASE AND A LIL MORE ADVANCED
Sure @Hema Jalmoru In next session.
No words to explain, you guys are amazing
Thank you so much 😀
Thanks for sharing these python interview questions and answers.
Welcome, Keep learning with Intellipaat😊
when someone says __init__ is a constructor.. you are out Immediately. (init: name itself says that it is to initialize. and not to construct the object. people from JAVA usually tend to apply their talents to python. But, please do not do so.
C++ and Java left the chat
Sir , will it be that easy??
1:31 Story to remember it
raise if nonlocal from global
lambda is not in class break
True or False except finally else del
try return and pass None as def
continue for asset import elif raise
[30 key words]
True, False, None only first letter capital
Wonderful and helpful video. Thank you very much! 🤗
Glad it was helpful! Keep learning with Intellipaat😊
@@Intellipaat Sure
woah this channel is amazing
Thanks Deepak. Stay tuned to Intellipaat channel. :)
Hello sir good morning I'm a fresher interesting for software sector which language is choose for better opportunities in future like Java,python,javascript..etc...pls tell me sir
Hi @Hymavathi mekala We appreciate your interest towards learning. Our to start with python to make a entry in software. All the best:- )
@@Intellipaat ok sir tqu so much but so many peoples to go in Java sector good future when compared to Python I'm fully confusing tqu sir for ur information
dependent variable 'Species' has categorical values, so how come did it work?
@Prakhar Shukla If you wish to get Personal support Kindly call our course advisors on IND: +91-7022374614 US: 1-800-216-8930 (Toll-Free).
This video was superb.👍
Thank you so much @Nitin Rawat Keep learning with Intellipaat :- )
It would have been better if you would have added all CSV files required for the video.
Nice teaching, well understands to everyone
Thank you for watching. :)
Increase the font size when code.
@Mohit Patel Sure we will do that in our upcoming videos.
Were the questions for fresher level or advanced level ..I am beginning a career in python. pls suggest the interview tips
these were most probably fresher questions
Top notch stuff...Appreciate the amount to time you have invested...More power to you, looking forward to more content made with the same honesty.
Thank you for watching. :)
Excellent video...All in one of python...i really like this video... Tysm sir
great content, very consise and easy to revise. thanks.
You are welcome! @Abhishek Singh Keep learning with Intellipaat:- )
Its no way close to any interview question its just a quick recap of python and their syntax.
Can you help me for which type of python interviews questions ask and interviews demo ?
It's good that you pointed out the issues with this tutorial although when you criticize someone or something you should also suggest better options than the thing that you are criticizing.
Great session ❤️❤️❤️
Thank you!
Jehadi
sir plz make videos on data mining
Sure, will forward the topic to the respective team and will upload the video soon. Please subscribe to Intellipaat channel & press the bell icon so that you don't miss that video from us.
Very useful
more helpful video......... thanks sir...
Glad to hear that
🔥🔥🔥Intellipaat's Python online training course: intellipaat.com/python-certification-training-online/🔥🔥🔥
Thank you for your efforts and it seems very helpful. By the way, I think you need to obey Python naming conventions.
If you know much better keep advice with yourself okk.
@@Hrk25s I am far from being much better, but the advice is for tutorial to be much better because as python's peps expose, conventions are important for python so for ınterviewers.
class name first letter should be capital.Please teach correct conventions
Python for data science
nothing about list, tuple, iterators, generators, decorators, udf, and so much more!
Thank you sir
Welcome @anindita jena
will these kind of questions are asked for freshes?becoz few terms are new for me
Yes Chaitanya, Please watch the complete video to learn in detail😊
This was good
Thank you for watching.🙂
It is very nice
Thanksss atone
x='abcdefghi'
length=x.index(x[-1])+1
for length :---
excellent
Many many thanks @Vinay Bhavana Keep learning with us:- )
Simply great with examples. Thanks a lot
You are welcome! @Sanjay G Keep learning with us:- )
Amazing☺️
Thanks 😊
Great video. Thank you
Welcome. Keep learning with Intellipaat😊
scala course plz.
Hi Sujit, sure will forward the topic to the respective team and will upload the video soon. Please subscribe to Intellipaat channel & press the bell icon so that you don't miss that video from us. :)
at 15:39 if I have multiple parent classes then how will I call the constructor of the desired class
bob is studying engineering and is 12, what are you doing with your life?
Helpful
Glad to hear that
Sir 'App' ka name kya hai jis par aap program run kar rhe h..
Dictionary is no longer unordered from v3.6
may i know his name?
Do we have any certification of Python ?
Which body genuinely issues a certificate for Python ?
You can check out python courses in udemy which issues certificate
@@akshaykalghatgi984 I now know, it's Python institute
also mention that this is DATA SCIENCE oriented.
19:24 out put is not comming for me i have been printed same code in online
python compiler
it depends on the environment. it will only print it the way he showed it if you are in the Jupiter environment like he is or in the command prompt python environment
You used Iris to store Nan values but printed iris1 values and changes occurred how?
please do one for machine learning using python
Hi Samanwita, the team is working on this video. It will be uploaded very soon. Please subscribe to Intellipaat channel & press the bell icon so that you don't miss that video from us. :)
thankyou
Welcome
In the replacing odd elements with -1 for a numpy array, I think you should've explained how the syntax works.
So if you have an numpy array
arr1 = np.arange(10,100,5)
[10 15 20 25 30 35 40 45 50 55 60 65 70 75 80 85 90 95]
and you perform the following:
arr1%2==1
it will return you a list of boolean values that satisfies the condition like this:
[False True False True False True False True False True False True
False True False True False True]
now doing this will replace the elements with -1 wherever the condition lies to be True
arr1[arr1%2==1]=-1
[10 -1 20 -1 30 -1 40 -1 50 -1 60 -1 70 -1 80 -1 90 -1]
Tq ❤️
You are welcome @Bilal Bob Do like, share & subscribe to our channel to get updates on upcoming videos.
why not your are comparing with Java?
Hi, there is a separate tutorial we are working on Java Interview Questions. It will be uploaded on Sunday, 4th Aug. Please subscribe to Intellipaat channel & press the bell icon so that you don't miss that video from us. :)
voice is pinching in ear. improve mic quality at all
thanks for the feedback.
Thank u
Welcome. :)
Can i get a job without cs degree can you explain that?
Yes, if you have knowledge and skills then definitely you will get job.
@@Intellipaat Thank you!!
How to create a iris.csv file
Superb
Thank you! Cheers!
Video to tune badia banai h ache se learn karke , but initially.. you had done mistake.... Angular is not programming language. It's framework of JavaScript.🤐
Thanks for the feedback. :)
Not exactly what I was expecting, but it's good anyway.
this is more of a Pandas and Numpy tutorial
We have tried covering all main topics of Python.
But all this things is just basic
Me no understand NaN
Ty sir
Sir plz don't mind, beside ML , ALL ques can solve any 10+2 CBSE students, sir this type of question asked then every one become software engineer.plz guide audience correctly
Why indians learn us Python(
so crsip! 💖😗 XD
@Bhavani Shankar Do like, share & subscribe to our channel to get updates on upcoming videos.