-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodandPkg.py
140 lines (85 loc) · 2.02 KB
/
modandPkg.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# python Modules and Packages
# Modules
# 1.inbult
# 2.User defind Modules
# Any python file can be modle
# Inbuilt Modules
# ==========================
# math
# random
# date
# time
# re
# calendar
# os
# sys
# threading
# .
# .
# .
# .
# .
#
# Using a modle
# --------------------
# import --------- Keyword
# 1. import the modeuw
# import modulenae
# Eaxmple ------1
# ====================
# import math
# from math import factorial,pi
# from math import *
# # dir() ----------- > gives all the builting function
# # print(dir(math))
# print(math.pi)
# print(math.factorial(5))
# print(math.e)
# print(factorial(5))
# print(pi)
# print(pi)
# print(factorial(5
# import random
# from random import *
# while True:
# print(randint(1,200))
# l = ['apple','samsung','nokia','lenovo']
# print(choice(l))
# import time
# from time import *
# print(timezone)
# print(daylight)
# Functions:
# time() -- return current time in seconds since the Epoch as a float
# clock() -- return CPU time since process start as a float
# sleep() -- delay for a number of seconds given as a float
# gmtime() -- convert seconds since Epoch to UTC tuple
# localtime() -- convert seconds since Epoch to local time tuple
# asctime() -- convert time tuple to string
# ctime() -- convert time in seconds to string
# mktime() -- convert local time tuple to seconds since Epoch
# strftime() -- convert time tuple to string according to format specification
# strptime() -- parse string to time tuple according to format specification
# tzset() -- change the local timezone
# print(time())
# print(clock())
# print('hello')
# sleep(2)
# print('ji')
# print(localtime())
# import calendar
# from calendar import *
# print(calendar(2018))
# print(month(2018,10))
#
# os
# sys
# re threading
# ========================================
# USER DEFINED MODULES
# ========================================
''' This is main module'''
a = 1
b = 'Hello'
def add(x,y):
print(x+y)