Python Interview Questions Beginner
1. Know how to write code on a whiteboard or paper
2. Know basic python control flow
for loops:
for i in range(1,11):
print iwhile loops:
i = 1
while i <= 10:
print i
i += 1if/else statements:
3. Be able to discuss how you've used python in the past
4. Know how to solve common interview problems
Fizz Buzz - i.e Bolt
Fibonacci Sequence
5. Know basic python data types and when to use them
6. Know how to use list comprehansion
7. Know how to use Generators
8. Know the basics of OOP
9. Have python related questions ready to ask your interviewer
10. Know the basics of other Technologies
Last updated