Student_Module

PHOTO EMBED

Tue Mar 15 2022 03:36:15 GMT+0000 (Coordinated Universal Time)

Saved by @Vishal_Kumar #python

# -- Importing Modules
import pickle
import os
clear = lambda: os.system('cls' if os.name in ('nt', 'dos') else 'clear')
clear()

def check(name,Class):
    return True
    
def studentHeader():
    clear()
    print("you are welcome to the student module")
content_copyCOPY

This is extra added module used by main module or Library_module.