-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetTwo.py
274 lines (178 loc) · 5.25 KB
/
setTwo.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
# # S1 D3 Assignment - Set 2
# ### Problem **1: Print the following pattern**
# Write a program to print the following number pattern using a loop.
# ```
# 1
# 1 2
# 1 2 3
# 1 2 3 4
# 1 2 3 4 5
# ```
def print_number_pattern(rows):
for i in range(1, rows + 1):
for j in range(1, i + 1):
print(j, end=" ")
print()
rows = 5
print_number_pattern(rows)
# ### Problem **2: Display numbers from a list using loop**
# Write a program to display only those numbers from a [list](https://pynative.com/python-lists/) that satisfy the following conditions
# - The number must be divisible by five
# - If the number is greater than 150, then skip it and move to the next number
# - If the number is greater than 500, then stop the loop
# **Given**:
# ```
# numbers = [12, 75, 150, 180, 145, 525, 50]
# ```
# **Expected output:**
# ```
# 75
# 150
# 145
# ```
def display_numbers(numbers):
for num in numbers:
if num % 5 == 0 and num <= 500:
if num > 150:
continue
print(num)
else:
break
numbers = [12, 75, 150, 180, 145, 525, 50]
display_numbers(numbers)
# ### Problem **3: Append new string in the middle of a given string**
# Given two strings, `s1` and `s2`. Write a program to create a new string `s3` by appending `s2` in the middle of `s1`.
# **Given**:
# ```
# s1 = "Ault"
# s2 = "Kelly"
# ```
# **Expected Output**:
# ```
# AuKellylt
# ```
def append_middle(s1, s2):
middle_index = len(s1) // 2
s3 = s1[:middle_index] + s2 + s1[middle_index:]
return s3
s1 = "Ault"
s2 = "Kelly"
result = append_middle(s1, s2)
print(result)
# ### Problem **4: Arrange string characters such that lowercase letters should come first**
# Given string contains a combination of the lower and upper case letters. Write a program to arrange the characters of a string so that all lowercase letters should come first.
# **Given**:
# ```
# str1 = PyNaTive
# ```
# **Expected Output**:
# ```
# yaivePNT
# ```
def arrange_lowercase_first(input_str):
return ''.join(sorted(input_str, key=lambda x: (x.isupper(), x)))
str1 = "PyNaTive"
result = arrange_lowercase_first(str1)
print(result)
# ### Problem **5: Concatenate two lists index-wise**
# Write a program to add two lists index-wise. Create a new list that contains the 0th index item from both the list, then the 1st index item, and so on till the last element. any leftover items will get added at the end of the new list.
# **Given**:
# ```
# list1 = ["M", "na", "i", "Ke"]
# list2 = ["y", "me", "s", "lly"]
# ```
# **Expected output:**
# ```
# ['My', 'name', 'is', 'Kelly']
# ```
def concatenate_lists_indexwise(list1, list2):
return [x + y for x, y in zip(list1, list2)]
list1 = ["M", "na", "i", "Ke"]
list2 = ["y", "me", "s", "lly"]
result = concatenate_lists_indexwise(list1, list2)
print(result)
# ### Problem **6: Concatenate two lists in the following order**
# ```
# list1 = ["Hello ", "take "]
# list2 = ["Dear", "Sir"]
# ```
# **Expected output:**
# ```
# ['Hello Dear', 'Hello Sir', 'take Dear', 'take Sir']
# ```
list1 = ["Hello ", "take "]
list2 = ["Dear", "Sir"]
result = [x + y for x in list1 for y in list2]
print(result)
# ### Problem **7: Iterate both lists simultaneously**
# Given a two Python list. Write a program to iterate both lists simultaneously and display items from list1 in original order and items from list2 in reverse order.
# **Given**
# ```
# list1 = [10, 20, 30, 40]
# list2 = [100, 200, 300, 400]
# ```
# **Expected output:**
# ```
# 10 400
# 20 300
# 30 200
# 40 100
# ```
l = [10, 20, 30, 40]
l2 = [100, 200, 300, 400]
zipl = zip(l, l2[::-1])
for num, num2 in zipl:
print(num, num2)
# ### Problem **8: Initialize dictionary with default values**
# In Python, we can initialize the keys with the same values.
# **Given**:
# ```
# employees = ['Kelly', 'Emma']
# defaults = {"designation": 'Developer', "salary": 8000}
# ```
# **Expected output:**
# ```
# {'Kelly': {'designation': 'Developer', 'salary': 8000}, 'Emma': {'designation': 'Developer', 'salary': 8000}}
# ```
employees = ['Kelly', 'Emma']
defaults = {"designation": 'Developer', "salary": 8000}
details = {employee: defaults.copy() for employee in employees}
print(details)
# ### Problem **9: Create a dictionary by extracting the keys from a given dictionary**
# Write a Python program to create a new dictionary by extracting the mentioned keys from the below dictionary.
# **Given dictionary**:
# ```
# sample_dict = {
# "name": "Kelly",
# "age": 25,
# "salary": 8000,
# "city": "New york"}
# # Keys to extract
# keys = ["name", "salary"]
# ```
# **Expected output:**
# ```
# {'name': 'Kelly', 'salary': 8000}
# ```
sample_dict = {
"name": "Kelly",
"age": 25,
"salary": 8000,
"city": "New york"}
# Keys to extract
keys = ["name", "salary"]
ans = {"name": sample_dict.get("name"),
"salery" : sample_dict.get("salary")
}
print(ans)
# ### Problem **10: Modify the tuple**
# Given a nested tuple. Write a program to modify the first item (22) of a list inside the following tuple to 222
# **Given**:
# ```
# tuple1 = (11, [22, 33], 44, 55)
# ```
# **Expected output:**
# tuple1: (11, [222, 33], 44, 55)
tuple1 = (11, [22, 33], 44, 55)
tuple1[1][0]=222
print(tuple1)