Questions Q: Python is always called an easy language. Will you agree with it? Q: What are the pitfalls and problems of Python language? Q: How does a framework differ from a library? Q: Is it possible to use the construction True = False ? Q: When will the else part of try...except...else be executed? Q: What is monkey patching? How to use it in Python? Example? Is it ever a good idea? Q: How are dict and set implemented internally? What is the complexity of retrieving an item? How much memory do these structures consume? Q: Does Python support multiple inheritance? How does it solve the diamond problem? Q: What is MRO in Python? How does it work? Q: Does Python have an assignment operator? How is the assignment process in Python different from C/C++? Q: What are descriptors? Is there a difference between a descriptor and a decorator? Q: How are arguments passed to a function in Python — by value or by reference? Q: What tool...