-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDAY_8.py
More file actions
301 lines (169 loc) · 5.89 KB
/
Copy pathDAY_8.py
File metadata and controls
301 lines (169 loc) · 5.89 KB
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
#!/usr/bin/env python
# coding: utf-8
# # Functions with Inputs
# In[2]:
# Functions are code blocks written to do some functionality - they may take inputs or execute something as it is
# parameter - argument
# name - "Aqsa"
# In[8]:
# Simple Function
def greet():
print(" Hello \n Good Morning!! \n Have a nice day :)")
greet()
# In[10]:
# Function getting input from user
def greet_with_name(name): # name - input
print(f" Hello {name} \n Good Morning!! \n Have a nice day :)")
greet_with_name("Aqsa")
# In[16]:
# Function with Multiple Inputs
def greeting(name, location):
print(f" Hello {name}, How's the weather in {location}")
greeting("Aqsa", "Pakistan")
# In[21]:
# def addition(a, b, args):
# print(a + b + args)
# addition(1,2,3,4,5,6)
# In[24]:
# Function with keyword Arguments - takes predefined args if they're not provided by user - else prints the user givena args
def keyword_args(name = "Aqsa", location = "xyz"):
print(f"Hello {name} from {location}")
keyword_args("james")
# # AREA CALCULATION
# In[33]:
# Given the height and width of a wall, calculate no. of cans required to paint the whole area
height_ = int(input("Enter height of the wall: "))
width_ = int(input("Enter width of the wall: "))
def cans_of_paint(height, width):
no_of_cans = round((height * width) / 5)
print(f"You need to buy {no_of_cans} cans of paint")
cans_of_paint(height_, width_)
# # PRIME NUMBER CHECKER
# In[39]:
# prime number - that can only be divided by itself
n = int(input("Check this number: \n"))
def prime_checker(number):
if number%2 != 0 and number%3 != 0 and number%5 != 0:
print(f"{number} is a prime number.")
else:
print(f"{number} is not a prime number.")
prime_checker(n)
# # CAESAR CIPHER
# In[85]:
# Encode and decode text for better security
letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k',
'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
'x', 'y', 'z']
# In[107]:
# Step - 1
direction = input("Type 'encode' to encrypt, type 'decode' to decrypt: \n")
message = input("Type your message: \n")
shift = int(input("Type the shift number: \n"))
# In[103]:
# Step - 2 - now encode the message
def encrypt(message_, shift_):
cipher_text = ""
for char in message_:
pos = letters.index(char)
new_pos = pos + shift_
if new_pos >= 26:
new_pos -= 26
new_char = letters[new_pos]
cipher_text += new_char
print(f" The encrypted text is {cipher_text}")
encrypt(message, shift)
# In[106]:
# Step - 3 - now decrypt the message
def decrypt(message_, shift_):
decrypted_text = ""
for char in message_:
pos = letters.index(char)
new_pos = pos - shift_
new_char = letters[new_pos]
decrypted_text += new_char
print(f" The decrypted text is {decrypted_text}")
decrypt(message, shift)
# In[ ]:
# Step - 4 - taking decisions
if direction == "encrode":
encrypt(message, shift)
elif direction == "decode":
decrypt(message, shift)
# In[114]:
# COMPLETE SOLUTION
# In[123]:
# Encode and decode text for better security
letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k',
'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
'x', 'y', 'z']
# Step - 1
direction = input("Type 'encode' to encrypt, type 'decode' to decrypt: \n")
message = input("Type your message: \n")
shift = int(input("Type the shift number: \n"))
# Step - 2 - taking decisions
if direction == "encode":
encrypt(message, shift)
elif direction == "decode":
decrypt(message, shift)
else:
print("Please enter correct operation to be performed!")
# Step - 3 - now encode the message
def encrypt(message_, shift_):
cipher_text = ""
for char in message_:
pos = letters.index(char)
new_pos = pos + shift_
if new_pos >= 26:
new_pos -= 26
new_char = letters[new_pos]
cipher_text += new_char
print(f" The encrypted text is {cipher_text}")
# encrypt(message, shift)
# Step - 4 - now decrypt the message
def decrypt(message_, shift_):
decrypted_text = ""
for char in message_:
pos = letters.index(char)
new_pos = pos - shift_
new_char = letters[new_pos]
decrypted_text += new_char
print(f" The decrypted text is {decrypted_text}")
# decrypt(message, shift)
# In[124]:
# BETTER SOLUTION - LESS REDUNDANCY
# In[4]:
# Encode and decode text for better security
letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k',
'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
'x', 'y', 'z']
# Step - 2 - Use just caesar function
def caesar(direction_, message_, shift_):
cipher_text = ""
for char in message_:
if char in letters:
pos = letters.index(char)
if direction == "encode":
new_pos = pos + (shift_ % 26) # shift_ % 26 -> to tackle with higher shift numbers
else:
new_pos = pos - (shift_ % 26)
if new_pos >= 26:
new_pos -= 26
new_char = letters[new_pos]
cipher_text += new_char
else: # to tackle with number/symbols/spaces
cipher_text += char
print(f"The cipher text is {cipher_text}")
# Step - 1
continue_ = True
while continue_:
direction = input("Type 'encode' to encrypt, type 'decode' to decrypt: \n")
message = input("Type your message: \n")
shift = int(input("Type the shift number: \n"))
caesar(direction, message, shift)
result = input("Type 'yes' if you want to continue, otherwise type 'no'")
if result == "no":
continue_ = False
print("Good Bye :)")
# In[127]:
# IMPROVING USER EXPERIENCES
# In[ ]: