-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic.py
387 lines (332 loc) · 7 KB
/
basic.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
#BASIC
a = 'HACKERMAN'
b = '200.1'
print(len(b))
print(type(b))
print(a[2])
#INDEXING & SLICING
print(a[3:])
print(a[:6])
print(a[4:7])
print(a[::2])
print(a[::])
#ADDITION
c = '2'
d = '3'
print(c+d)
e = 2
f = 3
print(e+f)
g = 'A'
h = 'man'
print(g+h)
#SLICING ADDITION
name = 'Sam'
last_name = name[1:]
first_name = 'P'
print(first_name+last_name)
#SYNTAX MULTIPLICATION
i = 'Aman'
print(i*5)
#UPPER OR LOWER EDIT
print(i.upper())
print(i.lower())
#STRING PRINT FORMATTING
print('{} is a good boy'.format('Aman'))
print(f'{i} is a good boy')
j = 'Raman'
k = 'Suman'
l = 'Kamal'
print(f'{j}, {k}, {l}, are best friends.')
print('{}, {}, {} are brothers.'.format('Raman', 'Suman', 'Kamal'))
print('{z}, {x}, {y} are brothers.'.format(x = 'Raman',y = 'Suman', z = 'Kamal'))
result = r = 200/5
print(f'The result is {r}.Thankyou.')
#LIST
list = ['apple', 'mango', 'banana', 'cherry']
print(list[2])
list.append('guava')
print(list)
list.pop(2)
print(list)
list.sort()
print(list)
list.reverse()
#DICTIONARY
items = {'pencil':'₹5', 'notebook':'₹25', 'eraser': '₹3', 'crayon':'₹100'}
print(items['eraser'])
print(len(items))
print(type(items))
products = {'k1':'v1', 'k2':['v2','v3','v4']}
print(products['k2'])
print(products['k2'][1])
print(products['k2'][1].upper())
value = {'a':'1','b':'2'}
value['a'] = '5'
print(value)
value['c'] = '3'
print(value)
print(value.keys())
print(value.values())
print(value.items())
#TUPLES
t = ('a', 'b', 'c', 'a')
print(len(t))
print(t.count('a'))
print(t.index('b'))
#SETS
myset = set()
myset.add('a')
print(myset)
myset.add('b')
print(myset)
mylist = [1,1,1,1,2,2,2,3,3,3,]
print(set(mylist))
#BOOLEANS
print(1 > 2)
print(1 == 1)
print(1 != 2)
print(2<5<3)
print(1<2 and 4<2)
print('h' == 'h' or '1' == '2')
print(not 1 == 1)
#IF, ELIF, ELSE
if 3>2:
print('Its True')
#
hungry = True
if hungry:
print('Feed me!')
#
name = 'Frankie'
if name == 'Frankie':
print('Hi Frankie')
elif name == 'Sammy':
print('Hi Sammy')
else:
print('What is you name?')
#FOR LOOP
mylist = [1,2,3]
for item in mylist:
print(item)
for num in mylist:
print('Hi')
#
list = [1,2,3,4,5,6,7,8,9,10]
for letter in list:
if letter % 2 == 0:
print(letter)
else:
print(f'Odd number: {letter} ')
#
mystring = 'Hello'
for letters in mystring:
print(letters)
#
newlist = [(1,2),(3,4),(5,6)]
for a,b in newlist:
print(a)
#
dic = {'k':'v','k2':'v2','k3':'v3'}
for item in dic:
print(item)
for values in dic.values():
print(values)
#WHILE LOOP
x = 0
while x < 5:
print(f'The value of x is {x}')
x = x + 1 #if not provided there will be unlimited loop, as 'x' has no value.
#
x = 0
while x < 5:
print(f'The value of x is {x}')
x = x + 1
else:
print('x is not less than 5')
#PASS
x = [1,2,3]
for item in x:
pass
print('end of script')
#CONTINUE
string = 'Sammy'
for letter in string:
if letter == 'a':
continue
print(letter)
#BREAK
x = 0
while x < 5:
if x == 2:
break
print(x)
x = x+1
#RANGE FUNCTION
mylist = [1,2,3]
for num in range(10):
print(num)
#
mylist = [1,2,3]
for num in range(3,10):
print(num)
#
mylist = [1,2,3]
for num in range(3,11):
print(num)
#ENUMERATE FUNCTION
count = 0
for letter in 'abcde':
print('At index {} the letter is {}'.format(count,letter))
count = count + 1
#
word = 'abcde'
for item in enumerate(word):
print(item)
#ZIP FUNCTION
list1 = [1,2,3]
list2 = ['a','b','c']
for item in zip(list1,list2):
print(item)
#IN
print('b' in ('x','y','z'))
print('mykey' in {'mykey':345})
#
d = {'mykey':345}
print(345 in d.values())
#MIN MAX
mylist = [10,20,30,40,50]
print(min(mylist))
print(max(mylist))
#IMPORT FUNCTIONS FROM LIBRARY
from random import shuffle
#INPUT
result = int(input('Your age is: ')) #int/float is used to take value as integer not as string
print(result)
#LIST COMPREHENSIONS
mylist = [x for x in range(0,11)]
print(mylist)
#
mynum = [x for x in range(0,11) if x%2 == 0]
print(mynum)
#SPLIT
string = 'I am a good boy'
print(string.split())
#JOIN
string = ['I', 'am', 'a', 'good', 'boy']
print(' '.join(string))
#DEF FUNCTION
def say_hello(name):
return 'Hello ' + name
print(say_hello('Aman'))
#
def names(a,b,c = 'Aman'):
return(a,b,c) #or return (a,b,c)
print(names('Axe','Bobby'))
print(names('Axe','Bobby','Randy'))
# *ARGS or ARGUMENTS
def name(*args):
return(args)
print(name('Aman','Alex','Bobby','Sandy'))
# **KWARGS or KEYWORD ARGUMENTS
def myfunc(**kwargs):
return(kwargs)
print(myfunc(Name = 'Aman', Age = '21', Sex = 'Male'))
#REVERSE list or tuple
a = [1,2,3,4,5]
print(a[::-1])
#MAP
def square(num):
return num**2
my_nums = [1,2,3,4,5]
for items in map(square,my_nums):
print(items)
#for getting results in list format
result = list(map(square,my_nums))
print(result)
#
def splicer(mystring):
if len(mystring) %2 == 0:
return 'Even'
else:
return 'Odd'
names = ['Aman','Raman','Albert']
for c in map(splicer,names):
print(c)
#FILTER
def check_even(num):
return num%2 == 0
mynums = [1,2,3,4,5,6]
for w in filter(check_even,mynums):
print(w)
#or
w = list(filter(check_even,mynums))
print(w)
#LAMBDA
square =lambda num: num**2
print(square(2))
#
f = lambda a,b: a+b
print(f(3,5))
# OBJECT ORIENTED PROGRAMMING
class Dog:
sci_name = "Canis Familiaries"
def __init__(self, name, breed, spots):
self.name = name
self.breed = breed
self.spots = spots
def bark(self): # adding a Method to above object
return 'Woof! My name is {}'.format(self.name)
my_dog = Dog(name='Sheru', breed='Lab', spots=False)
print(my_dog.name)
print(my_dog.breed)
print(my_dog.spots)
print(my_dog.sci_name)
print(my_dog.bark())
#Example 2
class Circle:
pi = 3.14 #predefined value
def __init__(self,radius=1):
self.radius = radius
self.area = radius*radius*Circle.pi # A= Pi r square
def circumference(self):
return self.radius*Circle.pi*2 # C= 2 Pi r
my_circle = Circle(radius=100)
print(my_circle.circumference())
#OOP INHERITANCE
class Animal:
def __init__(self):
print("ANIMAL CREATED")
def eat(self):
print("I am eating")
#lets inherit above object(Animal) to a new object(Dog)
class Doggie(Animal):
def __init__(self):
Animal.__init__(self) #Done
my_doggie = Doggie()
print(my_doggie.eat())
#Example 3
class Account:
def __init__(self, owner, balance=0):
self.owner = owner
self.balance = balance
def __str__(self):
return f'Account owner: {self.owner}\nAccount balance: {self.balance}' #\n to get balance in new line
def deposit(self, dep_amt):
self.balance += dep_amt
print('Deposit Accepted')
def withdraw(self, wd_amt):
if self.balance >= wd_amt:
self.balance -= wd_amt
print('Withdrawal Accepted')
else:
print('Funds Unavailable!')
acct1 = Account('Jose',100)
print(acct1)
print(acct1.owner)
print(acct1.deposit(50))
print(acct1)
print(acct1.withdraw(75))
print(acct1)
print(acct1.withdraw(500))
#####END######