sigmavirus24 / python-interview-questions

A listing of questions that could potentially be asked for a python job listing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python Interview Questions

This repository contains a number of Python interview questions that can be used when vetting potential candidates. It is not advised to use every one of these questions for the same candidate.

Descriptive/Vocabulary Questions

  1. What is Python?

  2. Describe some features of Python.

  3. How does Python execute code?

  4. What are some built-in types in Python?

  5. What are bindings, i.e., what does it mean for a value to be bound to a variable?

Usage Questions

  1. How do you create a list?

  2. How do you create a dictionary?

  3. What is a list comprehension? Why would you use one?

  4. What is a generator? What can it be used for?

  5. What is inheritance?

  6. What happens if you have an error in an init statement?

  7. What happens in python if you try to divide by zero?

  8. How can you improve the following code?

    import string
    
    i = 0
    for letter in string.letters:
        print("The letter at index %i is %s" % (i, letter))
        i = i + 1

    Bonus points for mentioning enumerate and use of str.format.

  9. How can you return multiple values from a function/method?

Strategic Questions

  1. What's the fastest way to swap the values bound to two variables?

  2. What is the importance of reference counting?

  3. Do functions (or methods) return something even if there isn't a return statement? If so, what do they return?

  4. How do you reverse a list? Can you come up with at least three ways?

  5. How would you merge two sorted lists? They can be any length, or empty.

  6. How would you count the lines in a file? How would you do it if the file was too big to hold in memory?

About

A listing of questions that could potentially be asked for a python job listing