-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
314 lines (307 loc) · 11.1 KB
/
index.html
File metadata and controls
314 lines (307 loc) · 11.1 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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>30 Days of Python</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<header class="header">
<h1 class="header-title" data-name="30 Days 30 Sites">30 Days of Python</h1>
<p class="header-resume">
I'm <em>Sumanth Talluri</em> and I am a Systems Engineer Specialist at Infosys. I try to improve my skills as a developer, so I accepted the 30 Days of Python challenge.
Hope you like!
<br>
This challenge is created by <a href="https://github.com/Asabeneh">Asabeneh Yetayeh</a>.
If you also want to participate in this 30 days of Python programming challenge then <a href="https://github.com/Asabeneh/30-Days-Of-Python">Check this out</a>
</p>
</header>
<h4 class="subtitle">
The codes are available on <a href="https://github.com/Sumanth-Talluri/30Days-Of-Python" target="_blank">github</a>
<i class="fa fa-github" aria-hidden="true"></i>
</h4>
<section class="challenges">
<!-- ---------------Challenge 1------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2001%20Introduction" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 1</span>
<h2 class="challenge-title">
Introduction
</h2>
</div>
</a>
<!-- ---------------Challenge 2------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2002%20Variables%2C%20Built-in%20Functions" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 2</span>
<h2 class="challenge-title">
Variables and Functions
</h2>
</div>
</a>
<!-- ---------------Challenge 3------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2003%20Operators" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 3</span>
<h2 class="challenge-title">
Operators
</h2>
</div>
</a>
<!-- ---------------Challenge 4------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2004%20Strings" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 4</span>
<h2 class="challenge-title">
Strings
</h2>
</div>
</a>
<!-- ---------------Challenge 5------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2005%20Lists" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 5</span>
<h2 class="challenge-title">
Lists
</h2>
</div>
</a>
<!-- ---------------Challenge 6------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2006%20Tuples" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 6</span>
<h2 class="challenge-title">
Tuples
</h2>
</div>
</a>
<!-- ---------------Challenge 7------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2007%20Sets" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 7</span>
<h2 class="challenge-title">
Sets
</h2>
</div>
</a>
<!-- ---------------Challenge 8------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2008%20Dictionaries" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 8</span>
<h2 class="challenge-title">
Dictionaries
</h2>
</div>
</a>
<!-- ---------------Challenge 9------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2009%20Conditionals" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 9</span>
<h2 class="challenge-title">
Conditionals
</h2>
</div>
</a>
<!-- ---------------Challenge 10------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2010%20Loops" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 10</span>
<h2 class="challenge-title">
Loops
</h2>
</div>
</a>
<!-- ---------------Challenge 11------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2011%20Functions" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 11</span>
<h2 class="challenge-title">
Functions
</h2>
</div>
</a>
<!-- ---------------Challenge 12------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2012%20%20Modules" target="">
<div class="challenge-box">
<span class="challenge-day">Day 12</span>
<h2 class="challenge-title">
Modules
</h2>
</div>
</a>
<!-- ---------------Challenge 13------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2013%20List%20Comprehension" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 13</span>
<h2 class="challenge-title">
List Comprehension
</h2>
</div>
</a>
<!-- ---------------Challenge 14------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2014%20Higher%20Order%20Functions" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 14</span>
<h2 class="challenge-title">
Higher Order Functions
</h2>
</div>
</a>
<!-- ---------------Challenge 15------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2015%20%20Python%20Type%20Errors" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 15</span>
<h2 class="challenge-title">
Python Type Errors
</h2>
</div>
</a>
<!-- ---------------Challenge 16------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2016%20Python%20Date%20Time" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 16</span>
<h2 class="challenge-title">
Python Date Time
</h2>
</div>
</a>
<!-- ---------------Challenge 17------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2017%20Exception%20Handling" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 17</span>
<h2 class="challenge-title">
Exception Handling
</h2>
</div>
</a>
<!-- ---------------Challenge 18------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2018%20Regular%20Expressions" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 18</span>
<h2 class="challenge-title">
Regular Expressions
</h2>
</div>
</a>
<!-- ---------------Challenge 19------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2019%20File%20Handling" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 19</span>
<h2 class="challenge-title">
File Handling
</h2>
</div>
</a>
<!-- ---------------Challenge 20------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2020%20PIP" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 20</span>
<h2 class="challenge-title">
Python Package Manager
</h2>
</div>
</a>
<!-- ---------------Challenge 21------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2021%20Classes%20and%20Objects" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 21</span>
<h2 class="challenge-title">
Classes and Objects
</h2>
<div class="challenge-labels">
<span class="label">Html</span>
<span class="label">Sass</span>
</div>
</div>
</a>
<!-- ---------------Challenge 22------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2022%20Web%20Scraping" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 22</span>
<h2 class="challenge-title">
Web Scraping
</h2>
</div>
</a>
<!-- ---------------Challenge 23------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2023%20Virtual%20Environment" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 23</span>
<h2 class="challenge-title">
Virtual Environment
</h2>
</div>
</a>
<!-- ---------------Challenge 24------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2024%20Statistics" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 24</span>
<h2 class="challenge-title">
Statistics
</h2>
</div>
</a>
<!-- ---------------Challenge 25------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2025%20Pandas" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 25</span>
<h2 class="challenge-title">
Pandas
</h2>
</div>
</a>
<!-- ---------------Challenge 26------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2026%20Python%20for%20web" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 26</span>
<h2 class="challenge-title">
Python Web
</h2>
</div>
</a>
<!-- ---------------Challenge 27------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2027%20Python%20with%20MongoDB" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 27</span>
<h2 class="challenge-title">
Python with MongoDB
</h2>
</div>
</a>
<!-- ---------------Challenge 28------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2028%20API" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 28</span>
<h2 class="challenge-title">
API
</h2>
</div>
</a>
<!-- ---------------Challenge 29------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2029%20%20Building%20an%20API" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 29</span>
<h2 class="challenge-title">
Building API
</h2>
</div>
</a>
<!-- ---------------Challenge 30------------------ -->
<a href="https://github.com/Sumanth-Talluri/30Days-Of-Python/tree/master/Day%2030%20%20Conclusions" target="_blank">
<div class="challenge-box">
<span class="challenge-day">Day 30</span>
<h2 class="challenge-title">
Conclusion
</h2>
</div>
</a>
</section>
<footer class="credits">
<p>
Developed with <i class="fa fa-heart"></i> by <a href="https://github.com/Sumanth-Talluri" target="_blank"> Sumanth</a> <br> <br>
</p>
</footer>
<script src="https://use.fontawesome.com/3a8d059f5c.js"></script>
</body>
</html>