how to import multiple modules in one line python
#To import multiple modules in one-line in Python, do the following
import {module1 ex. pygame}, {module2 ex. random}, {module3 ex. math}
'''
the comma separates the modules which allows you to import multiple modules
in one line
'''