Sobes.tech

How does the evaluation of conditions with AND and OR (short-circuit evaluation) work?

190

What testing frameworks are available in Python? Auxiliary libraries?

181

What is type hinting in Python? What type hinting is used?

172

What are design patterns? Which ones do you know and have used?

136

What will be res = asyncio.sleep(1) without await, is it possible to call it like that?

133

How do multithreading, multiprocessing, and asynchronous execution differ? When should each be used?

131

a = 10 assert a < 0 a = 10; b = 0; c = -1 if (c > 0 or b > 0 or a > 0) if (c > 0 and b > 0 and a > 0) What is the difference, how will the condition checks be performed?

128

How many numbers can be encoded with 8 bits? What is the difference between a stack and a queue? What is recursion?

127
/2