Advanced Python Packages,modules,classes &Method(functions)
Would you like to make this site your homepage? It's fast and easy...
Yes, Please make this my home page!
'''
Author:ZTA
Date :Jan 29,2020
'''
import json
import matplotlib.pyplot as plt
import numpy as np
import datetime as dt
import pandas as pd
#///////////////////////////////// End of Import //////////
def main():
print("Welcome to AI Deepl learning Machine")
'''
///////////////////////////////////////////////////////////
////////////////////////////////////////////
//////////////////////////////
'''
class Dubai:
pass
""" This module is for Duabi Emirate Regarding Health Care Sector"""
def __init__(self):
print("Welcome Dubai")
class Sharjh:
pass
""" This module is for Sharjh Emirate Regarding Education Care Sector"""
def __init__(self):
print("Welcome to Sharjh")
class Ajman:
pass
class Rasalkheemh:
pass
class Fujerh:
pass
class AbuDhabi:
pass
class Umalqueen:
pass
class Plotting:
def __init__(self):
self.sgmoid()
def sgmoid(self):
x=np.linspace(-10,10,500)
plt.grid()
plt.plot(x,np.sin(x))
plt.show()
#///////////////////////////////////////////////
if __name__=="__main__":
main()
dubai=Dubai()
sharjh=Sharjh()
ajman=Ajman()
plotting=Plotting()
#/////////////////////////////////////// End Of Program //////