Skip to content

Latest commit

 

History

History
59 lines (33 loc) · 2.44 KB

interview-questions-python.md

File metadata and controls

59 lines (33 loc) · 2.44 KB

Top 100+ Python Interview Questions You Must Prepare In 2022

https://www.edureka.co/blog/interview-questions/python-interview-questions/

Top 100 Python Interview Questions in 2022

https://intellipaat.com/blog/interview-question/python-interview-questions/

42 Real-time Python Interview Questions and Answers 2022

https://geekflare.com/top-python-interview-questions/

50 Top Python Interview Questions and Answers

https://hackr.io/blog/python-interview-questions

Python Programming Interview Questions

https://data-flair.training/blogs/python-programming-interview-questions/

The 23 Top Python Interview Questions & Answers

https://www.datacamp.com/blog/top-python-interview-questions-and-answers

Top 50+ Python Interview Questions & Answers

https://www.geeksforgeeks.org/python-interview-questions/#adv

Custom questions from practise

  1. Difference between lists and tupples? Differences between them when it comes to memory allocation?

  2. What types can be a dictionary key? Can a tuple with a nested list be?

  3. What are generators and do they hold data?

  4. What are decorators and how to make the decorator return the metadata of the wrapped function, and not the default decorator itself?

  5. If I change the name of the first argument from "self" to "goat" in the method of the object and I will use this goat in the body of the method, will it work or not?

  6. What is a property decorator and how to create a generic that we can use between different classes?

  7. What is a context manager and how to create your own custom one?

  8. What is a comprehensive list and what do we get when we change the square brackets to round ones?