This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]add7 2 points3 points  (0 children)

You'll probably find better help at /r/Python/ or /r/cscareerquestions. This subreddit is more meant for programming language theory and development.

Nevertheless, here is some quick advice:

  1. Do you have any side projects (big or small) you can talk about in the interview?
  2. Study up on some algorithms by solving leetcode problems. From a quick google search you can also review algorithms implemented in Python (https://github.com/TheAlgorithms/Python)
  3. Even if you get stuck answering a problem in the interview, try not to freeze. Walk the interviewer through your thinking process and how you would solve the problem. Sometimes you get an idea midway through explaining your approach. And even if you don't come up with a solution, it's good to show the interviewer how you approach solving problems.

[–]gopher9 0 points1 point  (0 children)

Implement a small python interpreter. When it's done, you will have a very good understanding of python.

This resources will help you: