-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.py
65 lines (45 loc) · 977 Bytes
/
list.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
marks = [3,5,6,"String",12.4,True]
print(marks)
# print(type(marks))
# print(marks[0])
# print(marks[1])
# print(marks[2])
# print(marks[3])
# print(marks[4])
# print(marks[5])
print(marks[-1])
# Print upto given Range in list
print(marks[0:-1])#exclude last i.e -1 index
print(marks[0:3])#exclude last i.e 3 index
if "String" in marks:
print("Yes it is in marks")
else:
print("No It is not found")
# List Methods -> List Manipulation\
new_l = [11,1,11,3]
print(new_l);
# Append -> Insert At last
new_l.append(7);
# print(new_l);
# Sort list Ascending
new_l.sort();
# print(new_l)
# Sort List Descending
new_l.sort(reverse=True);
# print(new_l)
new_l.reverse();
print(new_l);
# Give Index of that particular
x = new_l.index(11);
print(x)
# Count number of occurence
print(new_l.count(11))
m = new_l.copy()
print(m)
m[0] = "hey"
print(m)
# Insert at given Index
m.insert(1,899);# insert(index,value)
print(m)
new_l.extend(m);
print(new_l)