-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhii.py
60 lines (38 loc) · 1.17 KB
/
hii.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
import month as m
list_of_month = m.enlistMonth()
reverseList = m.reverseListMonth()
print(list_of_month)
print(reverseList)
m.y.hello()
# list_random = []
# # list_random.append(1)
# # list_random.append(2)
# # list_random.insert(1, 3)
# # list_random.remove(2)
# print(list_random)
# # string = input()
# # stri = string.split()
# # print(stri)
# # initialzing global variables
# # initialzing global variables
# list_random_var = []
# n = int(input())
# while(n!=0):
# string = input()
# # list containing breakouts of string
# string = string.split(" ")
# if(string[0] == "insert"):
# list_random_var.insert(int(string[1]), int(string[2]))
# elif(string[0] == "print"):
# print(list_random_var)
# elif(string[0] == "append"):
# list_random_var.append(int(string[1]))
# elif(string[0] == "remove"):
# list_random_var.remove(int(string[1]))
# elif(string[0] == "sort"):
# list_random_var.sort()
# elif(string[0] == "pop"):
# list_random_var.pop()
# elif(string[0] == "reverse"):
# list_random_var.reverse()
# n -= 1