- To debug a program, which module is used?
- Check how to use ipython along with all aliases and magic functions.
- What is Global interpreted lock (GIL)?
- What is the purpose of the PYTHONSTARTUP, PYTHONCASEOK, PYTHONHOME, and PYTHONSTARTUP environment variables?
- What is the output of the following code? a) [0], b) [1], c) [1, 0], d) [0, 1].
def foo(k): k = [1]q = [0]foo(q)print(q)
- Which of the following is an invalid variable?
a) my_string_1
b) 1st_string
c) foo
d) _