
The Information Technology Department

Development/Operations (DevOps) Topics


The Person class includes Instructor and Student Objects. Notice the Inherited properties (Name, Address and Date of Birth). Other properties are specific to each object like Office Location for the Instructor object and GPA for the Student object.
An ERP integrates business processes and the ERP database.

#Defining a main function in Python
def main():
print ("Hello World!")
if __name__ == "__main__":
main()









#initialize hash directory
counts={i:0 for i in ‘0123456789’}
#We have now initialized a dictionary hash named counts with 10 entries:
0-10 with each entry having a value of 0.
#we display the entries of the counts dictionary by simply calling its name:
counts
#here is the output from my terminal
