Python Interview Questions | Python Tutorial | Intellipaat

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ก.ค. 2024
  • 🔥Intellipaat Python training course: intellipaat.com/python-certif...
    This python interview questions and answers will help you ace your next Python Job Interview. We have collected these Python Interview Questions video based on the new curriculum for Python which was recently updated. This Python tutorial has Python interview tips as well so that you can include this in your Python interview preparation and excel in the interview. We have tried to cover almost all the concepts so that you clear the interview with ease.
    #PythonInterviewQuestions #PythonInterviewQuestionsandanswers #PythonTutorial #PythonTutorialforBeginners #Intellipaat
    📌 Do subscribe to Intellipaat channel & get regular updates on videos: bit.ly/Intellipaat
    💡 Know top 5 reasons to learn python: bit.ly/2IjH1Ng
    🔗 Watch complete Python tutorials here: • Python Tutorial | Pyth...
    📕 Read complete Python tutorial here: intellipaat.com/tutorial/pyth...
    📕Read insightful blog on Python certification: intellipaat.com/blog/python-c...
    📝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
    If you’ve enjoyed this python interview questions and answers for freshers tutorial, Like us and Subscribe to our channel for more similar informative tutorials.
    Got any questions about python training? Ask us in the comment section below.
    ----------------------------
    Intellipaat Edge
    1. 24*7 Life time Access & Support
    2. Flexible Class Schedule
    3. Job Assistance
    4. Mentors with +14 yrs
    5. Industry Oriented Course ware
    6. Life time free Course Upgrade
    ------------------------------
    Why should you watch this Python interview questions video?
    Python is one of the top programming language offering high-paying jobs. If you are looking to clear the Python interview then this Python interview questions and answers is a must watch for you. In this Python interview questions video you will learn what are the most probable questions that will be asked in the interview.
    What is included in this Python interview preparation video?
    You will find that this Python certification interview questions tips video is clearly segregated into its logical components. This way you will be in a better position to clear the interview.
    Check this segregation of interview questions here:
    1. Generic Questions
    2. Questions on OOPS
    3. Questions on NumPy
    4. Questions on Pandas
    5. Questions on File Handling
    6. Questions on Lambda Function
    7. Questions on Matplotlib
    8. Random Questions
    9. Machine Learning with Python Questions
    Who is eligible to watch this Python interview preparation video?
    This Python interview questions and answers video is both for experienced and freshers in the technology.
    What makes this Python interview questions video so unique?
    This Python interview questions and answers video is not prepared by academicians. This Python questions and answers video has been exclusively created by professionals who are working in Python domain. This way they have the first-hand idea of what are the questions that are being asked in the Python interview. Due to this you will be in a better position to clear the Python interview and land your dream job after watching this video.
    ------------------------------
    For more Information:
    Please write us to sales@intellipaat.com, or call us at: +91- 7847955955
    Website: intellipaat.com/python-certif...
    Facebook: / intellipaatonline
    LinkedIn: / intellipaat
    Twitter: / intellipaat

ความคิดเห็น • 211

  • @Intellipaat
    @Intellipaat  5 ปีที่แล้ว +30

    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.:)

    • @SinghRahul-
      @SinghRahul- 5 ปีที่แล้ว +2

      guys plz upload java new features and spring, springboot

    • @Intellipaat
      @Intellipaat  5 ปีที่แล้ว +2

      Yes Rahul. Next week will definitely try.:)

    • @Intellipaat
      @Intellipaat  5 ปีที่แล้ว

      Hi@@SinghRahul-, we have uploaded spring tutorial. Here's the link: th-cam.com/video/y0Z1qFvfzTs/w-d-xo.html :)

    • @maheshkumar-ep6pw
      @maheshkumar-ep6pw 5 ปีที่แล้ว +3

      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.

    • @aamerssimplifiedlearningst6742
      @aamerssimplifiedlearningst6742 4 ปีที่แล้ว +1

      Big data & Hadoop

  • @Intellipaat
    @Intellipaat  5 ปีที่แล้ว +102

    📝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

    • @Intellipaat
      @Intellipaat  5 ปีที่แล้ว +2

      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. :)

    • @Intellipaat
      @Intellipaat  5 ปีที่แล้ว +3

      Right. :)

    • @rajkushwahar
      @rajkushwahar 3 ปีที่แล้ว

      th-cam.com/video/5TP0GzEf-bI/w-d-xo.html
      Python important question with answers

    • @rajkushwahar
      @rajkushwahar 3 ปีที่แล้ว

      th-cam.com/video/5TP0GzEf-bI/w-d-xo.html

    • @chingurajput1314
      @chingurajput1314 5 หลายเดือนก่อน

      😢🎉😊😢😅

  • @michakwiatek5031
    @michakwiatek5031 4 ปีที่แล้ว +67

    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`

    • @SasidharanAnnamalai
      @SasidharanAnnamalai 3 ปีที่แล้ว +3

      Hi how to contact you I too prparing python myself to create an application

    • @pucek365
      @pucek365 ปีที่แล้ว

      Why would you use these single underscores in this example? It just makes the code longer without any need for it

  • @Intellipaat
    @Intellipaat  5 ปีที่แล้ว +1

    🔥🔥🔥Intellipaat's Python online training course: intellipaat.com/python-certification-training-online/🔥🔥🔥

  • @sangeetarout245
    @sangeetarout245 3 ปีที่แล้ว +6

    This lecture is really helpful.. Thanks a lot

  • @devansheerupabheda9534
    @devansheerupabheda9534 3 ปีที่แล้ว

    Excellent video...All in one of python...i really like this video... Tysm sir

  • @ankitkumargupta9753
    @ankitkumargupta9753 4 ปีที่แล้ว +10

    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! :)

  • @user-vm9hl3gl5h
    @user-vm9hl3gl5h ปีที่แล้ว

    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

  • @sridharm6865
    @sridharm6865 3 ปีที่แล้ว

    Excellent. Thanks for a great Tutorial.

  • @Indian-fh8hf
    @Indian-fh8hf 4 ปีที่แล้ว +34

    Your Pronunciation is awesome , perfectly audible
    Algorithms in Python !! If possible , please make a video on this Topic

    • @Intellipaat
      @Intellipaat  4 ปีที่แล้ว +4

      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.

  • @HemaSrini
    @HemaSrini 2 ปีที่แล้ว +1

    Superb mindblowing fantabulous phenomenal i never thought this easy it would be to understand Python. Thanks a lot.

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว

      @Hemavathi Murari Glad you liked it 😊 Do like, share & subscribe to our channel to get updates on upcoming videos.

  • @sanjayg2686
    @sanjayg2686 2 ปีที่แล้ว

    Simply great with examples. Thanks a lot

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว

      You are welcome! @Sanjay G Keep learning with us:- )

  • @JassCodes
    @JassCodes 3 ปีที่แล้ว +2

    Really best channel for learning..
    Thanks for making such a good videos

    • @Intellipaat
      @Intellipaat  3 ปีที่แล้ว +1

      Thanks and welcome🙂

  • @binarytpoint8904
    @binarytpoint8904 2 ปีที่แล้ว +3

    3.22
    Python version 3.7, dictionaries are ordered. In Python 3.6 and earlier, dictionaries are unordered.

  • @Swapnil_Lifestyle
    @Swapnil_Lifestyle 2 ปีที่แล้ว +2

    Very very informative video. Thank you for sharing this valuable video and explaining everything in details.

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว +1

      Glad it was helpful! @Swapnil Singh Do like, share & subscribe to our channel to get updates on upcoming videos.😊

  • @lakshmidevibodicherla8582
    @lakshmidevibodicherla8582 4 ปีที่แล้ว +1

    Nice teaching, well understands to everyone

    • @Intellipaat
      @Intellipaat  4 ปีที่แล้ว

      Thank you for watching. :)

  • @AbhishekSingh-tx3sp
    @AbhishekSingh-tx3sp 2 ปีที่แล้ว +1

    great content, very consise and easy to revise. thanks.

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว

      You are welcome! @Abhishek Singh Keep learning with Intellipaat:- )

  • @sharfarozkhan8203
    @sharfarozkhan8203 2 ปีที่แล้ว +3

    Sparta sir..am Ur big fan 😍

  • @shivamchaudhary6998
    @shivamchaudhary6998 3 ปีที่แล้ว +2

    no words can explain how how good your videos are

    • @Intellipaat
      @Intellipaat  3 ปีที่แล้ว +1

      Glad you liked it. Keep learning with Intellipaat😊

    • @shivamchaudhary6998
      @shivamchaudhary6998 3 ปีที่แล้ว

      @@Intellipaat sure sir

    • @28_nancythakur7
      @28_nancythakur7 ปีที่แล้ว

      Which software use in this video can you tell me plz...i use idle and online compiler but my every output wrong

  • @yaminipriya3742
    @yaminipriya3742 3 ปีที่แล้ว +3

    No words to explain, you guys are amazing

    • @Intellipaat
      @Intellipaat  3 ปีที่แล้ว

      Thank you so much 😀

  • @AyushSharma-be4kh
    @AyushSharma-be4kh 2 ปีที่แล้ว +1

    The video is really informative, Thanks to you.

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว

      Glad it was helpful! @Ayush Sharma Do like, share & subscribe to our channel to get updates on upcoming videos.

  • @DeepakKumar-uz4xy
    @DeepakKumar-uz4xy 5 ปีที่แล้ว +16

    woah this channel is amazing

    • @Intellipaat
      @Intellipaat  5 ปีที่แล้ว +1

      Thanks Deepak. Stay tuned to Intellipaat channel. :)

  • @CromaCampusOfficial
    @CromaCampusOfficial 3 ปีที่แล้ว +4

    Thanks for sharing these python interview questions and answers.

    • @Intellipaat
      @Intellipaat  3 ปีที่แล้ว

      Welcome, Keep learning with Intellipaat😊

  • @gouravshaw6699
    @gouravshaw6699 3 ปีที่แล้ว +1

    Wonderful and helpful video. Thank you very much! 🤗

    • @Intellipaat
      @Intellipaat  3 ปีที่แล้ว +1

      Glad it was helpful! Keep learning with Intellipaat😊

    • @gouravshaw6699
      @gouravshaw6699 3 ปีที่แล้ว

      @@Intellipaat Sure

  • @SuperBhavanishankar
    @SuperBhavanishankar ปีที่แล้ว

    to advance level in this video is escalated too quickly altho the difficulty is maintained in basic throughout the video . well done 😄

  • @bnl0047
    @bnl0047 ปีที่แล้ว +2

    one of the best videos on Python👌

    • @Intellipaat
      @Intellipaat  ปีที่แล้ว

      @bnl0047 Glad you think so! Do like, share & subscribe to our channel to get updates on upcoming videos.

  • @abdulsamath7616
    @abdulsamath7616 ปีที่แล้ว +1

    This helped a lot, thanks!

    • @Intellipaat
      @Intellipaat  ปีที่แล้ว +1

      Glad it was helpful! Do like, share & subscribe to our channel to get updates on upcoming videos.

  • @CHChandanMansani
    @CHChandanMansani ปีที่แล้ว +1

    Thank You very much, one of useful courses on python.

    • @Intellipaat
      @Intellipaat  ปีที่แล้ว

      @CH19 029 Chandan Mansani Glad it was helpful! Do like, share & subscribe to our channel to get updates on upcoming videos.

  • @NiloufarPourkasraei
    @NiloufarPourkasraei 3 ปีที่แล้ว

    Great video. Thank you

    • @Intellipaat
      @Intellipaat  3 ปีที่แล้ว +1

      Welcome. Keep learning with Intellipaat😊

  • @rajrishi6678
    @rajrishi6678 3 ปีที่แล้ว +4

    Damm......................!! Bro. what a session. It too good to device everything before the interview. Keep up the good work

    • @Intellipaat
      @Intellipaat  3 ปีที่แล้ว

      Glad you enjoyed it! Keep learning with Intellipaat😊

  • @mrunalipawar9642
    @mrunalipawar9642 4 ปีที่แล้ว +1

    Very useful

  • @titusmunene5497
    @titusmunene5497 3 ปีที่แล้ว +2

    you are really a good teacher, kindly upload a tutorial for beginners.

  • @ashokpawar6413
    @ashokpawar6413 ปีที่แล้ว +1

    Most informative questions..👍

    • @Intellipaat
      @Intellipaat  ปีที่แล้ว

      Glad it was helpful! Do like, share & subscribe to our channel to get updates on upcoming videos.

  • @shubhamjaiswal3743
    @shubhamjaiswal3743 4 ปีที่แล้ว +2

    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?

    • @Shubh22
      @Shubh22 ปีที่แล้ว

      1. print()
      2. A blank line

  • @Fan_Club366
    @Fan_Club366 2 ปีที่แล้ว +2

    Thank you so much sir your teaching process is very good 😀

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว

      Thanks and welcome @Mamta Kumari Do like, share & subscribe to our channel to get updates on upcoming videos.

    • @Fan_Club366
      @Fan_Club366 2 ปีที่แล้ว

      @@Intellipaat yes's sir 😀

  • @hrithiksharmaaa
    @hrithiksharmaaa 3 ปีที่แล้ว

    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

  • @SurajYadav-dj3fm
    @SurajYadav-dj3fm 3 ปีที่แล้ว

    more helpful video......... thanks sir...

  • @nitinrawat7581
    @nitinrawat7581 3 ปีที่แล้ว

    This video was superb.👍

    • @Intellipaat
      @Intellipaat  3 ปีที่แล้ว

      Thank you so much @Nitin Rawat Keep learning with Intellipaat :- )

  • @ganeshbhatms619
    @ganeshbhatms619 4 ปีที่แล้ว

    It is very nice

  • @syednadeembe
    @syednadeembe 4 ปีที่แล้ว +7

    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.

    • @Intellipaat
      @Intellipaat  4 ปีที่แล้ว

      Thank you for watching. :)

  • @localarts5095
    @localarts5095 3 ปีที่แล้ว +2

    Great session ❤️❤️❤️

  • @hemajalmoru3837
    @hemajalmoru3837 2 ปีที่แล้ว

    MORE OF THESE PLEASE AND A LIL MORE ADVANCED

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว

      Sure @Hema Jalmoru In next session.

  • @nipunagarwal135
    @nipunagarwal135 4 ปีที่แล้ว

    You used Iris to store Nan values but printed iris1 values and changes occurred how?

  • @koushikiawasthi7123
    @koushikiawasthi7123 2 ปีที่แล้ว +1

    Thanksss atone

  • @whonayem01
    @whonayem01 2 ปีที่แล้ว +1

    Thanks a lot

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว

      Most welcome @Abdullah Al Nayem Do like, share & subscribe to our channel to get updates on upcoming videos.

  • @surajpawar631
    @surajpawar631 2 ปีที่แล้ว

    thank you so much

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว

      @suraj pawar You're welcome! Do like, share & subscribe to our channel to get updates on upcoming videos.😊

  • @jhonbhai8943
    @jhonbhai8943 2 ปีที่แล้ว

    at 15:39 if I have multiple parent classes then how will I call the constructor of the desired class

  • @anjaliverma905
    @anjaliverma905 3 ปีที่แล้ว +1

    Bhaiya plzz...make a video series on datastructures !!

    • @Intellipaat
      @Intellipaat  3 ปีที่แล้ว

      Sure. Noted. Will upload soon. 🙂

  • @surajagasti2309
    @surajagasti2309 4 ปีที่แล้ว +4

    Were the questions for fresher level or advanced level ..I am beginning a career in python. pls suggest the interview tips

    • @Abhi-qi6wm
      @Abhi-qi6wm 3 ปีที่แล้ว

      these were most probably fresher questions

  • @Pradeep-ih8zh
    @Pradeep-ih8zh 2 ปีที่แล้ว

    It would have been better if you would have added all CSV files required for the video.

  • @shivamkamdi6822
    @shivamkamdi6822 4 ปีที่แล้ว +1

    Thank u

  • @aninditajena6808
    @aninditajena6808 3 ปีที่แล้ว

    Thank you sir

    • @Intellipaat
      @Intellipaat  3 ปีที่แล้ว

      Welcome @anindita jena

  • @umangchaudhary8447
    @umangchaudhary8447 ปีที่แล้ว +1

    Please make a videos tutorials on data structures with python

    • @Intellipaat
      @Intellipaat  ปีที่แล้ว

      @Umang Chaudhary Do like, share & subscribe to our channel to get updates on upcoming videos.

  • @bikashmahato2874
    @bikashmahato2874 2 ปีที่แล้ว

    Please make video on data structures and algorithms in python

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว

      @BIKASH MAHATO We do have a video on data structures and algorithms in python, you can check it out here ----> th-cam.com/video/yp-2F2OUJJg/w-d-xo.html

  • @kkumar888
    @kkumar888 4 ปีที่แล้ว +1

    This was good

    • @Intellipaat
      @Intellipaat  4 ปีที่แล้ว

      Thank you for watching.🙂

  • @vistazone6335
    @vistazone6335 2 ปีที่แล้ว

    Amazing☺️

  • @sivanandamandapati8657
    @sivanandamandapati8657 3 ปีที่แล้ว

    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

  • @halukaksu9694
    @halukaksu9694 4 ปีที่แล้ว +1

    Thank you for your efforts and it seems very helpful. By the way, I think you need to obey Python naming conventions.

    • @Hrk25s
      @Hrk25s 4 ปีที่แล้ว

      If you know much better keep advice with yourself okk.

    • @halukaksu9694
      @halukaksu9694 3 ปีที่แล้ว +2

      @@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.

  • @Ashish8363
    @Ashish8363 3 ปีที่แล้ว +3

    nothing about list, tuple, iterators, generators, decorators, udf, and so much more!

  • @ashulohar8948
    @ashulohar8948 ปีที่แล้ว +1

    Plz make a vedio on phyton questions for machine learning

    • @Intellipaat
      @Intellipaat  ปีที่แล้ว

      @Ashu lohar Do like, share & subscribe to our channel to get updates on upcoming videos.

  • @VishalSharma-lz6ky
    @VishalSharma-lz6ky 4 ปีที่แล้ว +1

    sir plz make videos on data mining

    • @Intellipaat
      @Intellipaat  4 ปีที่แล้ว +1

      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.

  • @MdRizwanRabbani
    @MdRizwanRabbani 4 ปีที่แล้ว

    Superb

  • @diamartin6865
    @diamartin6865 4 ปีที่แล้ว +2

    bob is studying engineering and is 12, what are you doing with your life?

  • @prarabdh6295
    @prarabdh6295 3 ปีที่แล้ว

    thankyou

  • @bollywoodadda375
    @bollywoodadda375 4 ปีที่แล้ว

    Ty sir

  • @arnavkumar5226
    @arnavkumar5226 2 ปีที่แล้ว

    Sir , will it be that easy??

  • @vrushabhjinde683
    @vrushabhjinde683 3 ปีที่แล้ว

    Helpful

  • @vinaybhavana3485
    @vinaybhavana3485 2 ปีที่แล้ว

    excellent

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว

      Many many thanks @Vinay Bhavana Keep learning with us:- )

  • @sandeepkumar-zv6fw
    @sandeepkumar-zv6fw 3 ปีที่แล้ว +1

    Great sir ap python bhut achha teach krte 🤗

  • @ace911turbo
    @ace911turbo 3 ปีที่แล้ว

    Dictionary is no longer unordered from v3.6

  • @tanushreekanathe2916
    @tanushreekanathe2916 2 ปีที่แล้ว

    Python for data science

  • @whoisprakhar
    @whoisprakhar 2 ปีที่แล้ว +1

    dependent variable 'Species' has categorical values, so how come did it work?

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว

      @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).

  • @akhileshbhargava9999
    @akhileshbhargava9999 4 ปีที่แล้ว +1

    Do we have any certification of Python ?
    Which body genuinely issues a certificate for Python ?

    • @akshaykalghatgi984
      @akshaykalghatgi984 3 ปีที่แล้ว

      You can check out python courses in udemy which issues certificate

    • @akhileshbhargava9999
      @akhileshbhargava9999 3 ปีที่แล้ว

      @@akshaykalghatgi984 I now know, it's Python institute

  • @tominjose1639
    @tominjose1639 3 ปีที่แล้ว

    class name first letter should be capital.Please teach correct conventions

  • @pashamchaitanya4820
    @pashamchaitanya4820 3 ปีที่แล้ว +1

    will these kind of questions are asked for freshes?becoz few terms are new for me

    • @Intellipaat
      @Intellipaat  3 ปีที่แล้ว

      Yes Chaitanya, Please watch the complete video to learn in detail😊

  • @archnasingh441
    @archnasingh441 3 ปีที่แล้ว

    Sir 'App' ka name kya hai jis par aap program run kar rhe h..

  • @tusharnagar6849
    @tusharnagar6849 4 ปีที่แล้ว

    How to create a iris.csv file

  • @mohitpatel1641
    @mohitpatel1641 2 ปีที่แล้ว +1

    Increase the font size when code.

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว +1

      @Mohit Patel Sure we will do that in our upcoming videos.

  • @bilalbob9061
    @bilalbob9061 2 ปีที่แล้ว

    Tq ❤️

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว

      You are welcome @Bilal Bob Do like, share & subscribe to our channel to get updates on upcoming videos.

  • @sujitprasad8717
    @sujitprasad8717 5 ปีที่แล้ว +1

    scala course plz.

    • @Intellipaat
      @Intellipaat  5 ปีที่แล้ว

      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. :)

  • @jvsainikhil9305
    @jvsainikhil9305 2 ปีที่แล้ว +1

    19:24 out put is not comming for me i have been printed same code in online
    python compiler

    • @SirMrMystery
      @SirMrMystery ปีที่แล้ว

      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

  • @nikilkvn
    @nikilkvn 4 ปีที่แล้ว +31

    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.

  • @pgpdse1106
    @pgpdse1106 5 ปีที่แล้ว +2

    why not your are comparing with Java?

    • @Intellipaat
      @Intellipaat  5 ปีที่แล้ว

      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. :)

  • @nitinnathgiri3246
    @nitinnathgiri3246 3 ปีที่แล้ว

    also mention that this is DATA SCIENCE oriented.

  • @rahulvashistha2872
    @rahulvashistha2872 3 ปีที่แล้ว +1

    Not exactly what I was expecting, but it's good anyway.

  • @hymavathimekala8511
    @hymavathimekala8511 3 ปีที่แล้ว

    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
      @Intellipaat  3 ปีที่แล้ว +1

      Hi @Hymavathi mekala We appreciate your interest towards learning. Our to start with python to make a entry in software. All the best:- )

    • @hymavathimekala8511
      @hymavathimekala8511 3 ปีที่แล้ว

      @@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

  • @mareboinaravi5272
    @mareboinaravi5272 3 ปีที่แล้ว +1

    1:11 starting time

    • @Intellipaat
      @Intellipaat  3 ปีที่แล้ว

      Yes Ravi, please watch the complete video to learn Python in Detail😊

  • @samanwita2165
    @samanwita2165 4 ปีที่แล้ว

    please do one for machine learning using python

    • @Intellipaat
      @Intellipaat  4 ปีที่แล้ว +1

      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. :)

  • @jjayeshpawar
    @jjayeshpawar 3 ปีที่แล้ว

    x='abcdefghi'
    length=x.index(x[-1])+1
    for length :---

  • @rajatverma6455
    @rajatverma6455 4 ปีที่แล้ว +60

    Its no way close to any interview question its just a quick recap of python and their syntax.

    • @bholukagathara7411
      @bholukagathara7411 3 ปีที่แล้ว +2

      Can you help me for which type of python interviews questions ask and interviews demo ?

    • @shivamchaudhary3493
      @shivamchaudhary3493 3 ปีที่แล้ว +35

      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.

  • @ExploreMalaya
    @ExploreMalaya 2 ปีที่แล้ว +1

    Pdf should be provided along with video….

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว +1

      We will upload it soon:- )

    • @ExploreMalaya
      @ExploreMalaya 2 ปีที่แล้ว

      @@Intellipaat thanks for a nice reply :)

  • @AkbaraliQ
    @AkbaraliQ 3 ปีที่แล้ว +1

    voice is pinching in ear. improve mic quality at all

    • @Intellipaat
      @Intellipaat  3 ปีที่แล้ว

      thanks for the feedback.

  • @9902152322
    @9902152322 2 ปีที่แล้ว +1

    may i know his name?

  • @thetechtimes
    @thetechtimes 3 ปีที่แล้ว

    Can i get a job without cs degree can you explain that?

    • @Intellipaat
      @Intellipaat  3 ปีที่แล้ว

      Yes, if you have knowledge and skills then definitely you will get job.

    • @thetechtimes
      @thetechtimes 3 ปีที่แล้ว

      @@Intellipaat Thank you!!

  • @manishchoudhary3923
    @manishchoudhary3923 3 ปีที่แล้ว

    But all this things is just basic

  • @SuperBhavanishankar
    @SuperBhavanishankar ปีที่แล้ว +2

    so crsip! 💖😗 XD

    • @Intellipaat
      @Intellipaat  ปีที่แล้ว

      @Bhavani Shankar Do like, share & subscribe to our channel to get updates on upcoming videos.

  • @debojyotichatterjee4421
    @debojyotichatterjee4421 3 ปีที่แล้ว +1

    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]

  • @rahulsood81
    @rahulsood81 2 ปีที่แล้ว

    this is more of a Pandas and Numpy tutorial

    • @Intellipaat
      @Intellipaat  2 ปีที่แล้ว +1

      We have tried covering all main topics of Python.

  • @LuvxJacqu4li8e
    @LuvxJacqu4li8e 2 ปีที่แล้ว

    Me no understand NaN

  • @jatinanand3726
    @jatinanand3726 4 ปีที่แล้ว +2

    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.🤐

    • @Intellipaat
      @Intellipaat  4 ปีที่แล้ว

      Thanks for the feedback. :)