Daftar Modul Python

'''
Please note that there are many more that I may not have listed
There are also other reasons for using these modules other than the
reasons that I have listed.
'''

import random # Mainly used for random number
import time # Mainly used for time.sleep()
import math # More complex maths
import os # Working with files?
import pygame # Creating windows (games)
import turtle # Creating windows
import re # Regex
import numpy # Dealing with arrays
import socket # Netorking, communicating between computers
import this # Poem
import keyboard # Receiving keyboard inputs
import mouse # Detecting mouse clicks
import webbrowser # Opening websites
import pprint # Formating text
import pyautogui # Automation

# Might add more
Ninja Penguin