Python fundamentals - variables, data types, operators, and basic syntax
What is the difference between a list and a tuple in Python?
What is the output of: print(type([]))?
Which of the following is the correct way to create a dictionary in Python?
What is the purpose of the "self" parameter in Python class methods?
What will be the output of: print(2 ** 3)?
Which of the following is used for comments in Python?
What is the difference between "==" and "is" in Python?
What is the output of: print("Hello"[1])?
Which method is used to add an element at the end of a list?
What will be the output of: print(bool(""))?
What is the correct way to open a file in Python for reading?
What is a Python set?
What is the output of: print(10 // 3)?
Which of the following is NOT a valid Python data type?
What does the len() function do?
What is the output of: print(list(range(3)))?
How do you check the Python version from the command line?