Robotics & Artificial Intelligence
Fill in the blanks:
- Python is a ……………. which means it may be used to create a broad variety of applications.
- ……………. frameworks are used for web development in Python.
- ……………. is a tool kit in Python for GUI development.
- The suitable data type to store only True or False is …………….. .
- Lists are ……………. and ……………. are immutable in Python.
Answer
- Python is a general-purpose language which means it may be used to create a broad variety of applications.
- Django and Flask frameworks are used for web development in Python.
- wxPython is a tool kit in Python for GUI development.
- The suitable data type to store only True or False is bool.
- Lists are mutable and tuples are immutable in Python.
Related Questions
Which of the following is a membership operator?
- and
- or
- in
- None of these
Which keyword in Python is used to import a module?
- include
- input
- import
- system
What do you understand by data type? List names of Python built-in data types.
What is the difference between list and tuple in Python? Explain with the help of an example.