forked from neogcamp/neogcamp-lesson-3-live
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog2.html
128 lines (118 loc) · 5.64 KB
/
blog2.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/fontawesome-free-5.15.3-web/css/all.css" />
<title>blogs | jsuryakt</title>
<link rel="icon" type="image/png" href="images/favicon.ico">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-0LYPYSESVH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-0LYPYSESVH");
</script>
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-KL5J4WP');</script>
<!-- End Google Tag Manager -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KL5J4WP" height="0" width="0"
style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<nav class="navigation container">
<!-- <div class="nav-brand">Jayasurya</div> -->
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline">
<a class="link" href="/">home</a>
</li>
<li class="list-item-inline">
<a class="link" href="/projects.html">projects</a>
</li>
<li class="list-item-inline">
<a class="link link-active" href="/blogs.html">blogs</a>
</li>
</ul>
</nav>
<!-- <header class="hero">
<img class="hero-img" src="images/blog-page.svg" />
<h1 class="hero-heading">
read my <span class="heading-inverted">blogs</span>
</h1>
<p class="hero-heading">
I document my journey of being a better Software Engineer.
</p>
<div class="text-center">
<a href="#blogs"><i class="fas fa-chevron-down"></i></a>
</div>
</header> -->
<div class="container-center">
<div class="blog-box">
<article class="showcase-blog">
<h2>
A look into python as a programming language to learn in 2021
</h2>
<p>
Let us investigate the python language and its significance in 2021. Python has been the maximum
dominant language withinside the network for pretty some years now. This is clear from the reality
that budding devs have begun studying python or they've studied it beyond a year. Python has been
voted as a pinnacle programming language in the latest surveys. In a month-to-month rating of famous
programming languages, Python is now third after Java and C. It has emerged so, because of the go-to
language for website development(Django or Flask), software development, machine learning, due to
the number of libraries and additionally programs associated with Big Data. Its recognition stems
from numerous motives like Its exceptionally clean to examine, Its syntax is essentially readable
and lacks the complexities of other competing languages. So devs can focus on making use of logic in
place of spending infinite hours focusing on minute syntax details. It's a totally flexible
language. All offerings primarily based totally on API and libraries additionally guide python
development. It is also object-oriented. It's business-orientated You can construct any kind of net
software, software, GUI on python regardless of any enterprise they're going to be deployed for.
It's getting used at Netflix & Google and also in startups.
</p>
</article>
</div>
</div>
<footer class="footer">
<div class="footer-header">
Contact me <span class="footer-light">@jsuryakt on all platforms</span>
</div>
<ul class="social-links list-non-bullet">
<li class="footer-list-item-inline">
<a class="footer-link" target="_blank" href="mailto:[email protected]">
email
</a>
</li>
<li class="footer-list-item-inline">
<a class="footer-link" target="_blank" href="https://github.com/jsuryakt">
github
</a>
</li>
<li class="footer-list-item-inline">
<a class="footer-link" target="_blank" href="https://linkedin.com/in/jsuryakt">
linkedin
</a>
</li>
<li class="footer-list-item-inline">
<a class="footer-link" target="_blank" href="https://twitter.com/jsuryakt">
twitter
</a>
</li>
</ul>
<a class="footer-light" target="_blank" href="mailto:[email protected]">[email protected]
</a>
<!-- <p class="footer-light">[email protected]</p> -->
</footer>
</body>
</html>