-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython.html
129 lines (109 loc) · 5.64 KB
/
python.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
129
<!DOCTYPE html>
<html lang="en">
<head>
<title>PYTHON</title>
<link rel="stylesheet" href="website.css">
<script src="https://kit.fontawesome.com/dcd30a2475.js" crossorigin="anonymous"></script>
</head>
<body>
<nav class="navbar">
<a href="website.html">HOME</a>
<a href="about.html">ABOUT</a>
<a href="history.html">HISTORY</a>
<a href="contact.html">CONTACT</a>
<a href="more.html">MORE</a>
<div class="float-right">
<a class="btn btn-primary" href="login.html">LOGIN</a>
<a class="btn btn-warning right" href="register.html">REGISTER</a>
</div>
</nav>
<header class="p-5">
<h2 class="text-centre "><b>PYTHON</b></h2>
</header>
<div>
<h3> 01.WHAT IS PYTHON & HISTORY OF PYTHON ?</h3>
<p class="p-4 text-justify">
<b>Python</b> is a computer programming language often used to build websites and software, automate tasks, and
analyze data. Python is a general-purpose language, not specialized for any specific problems, and used to
create various programmes. This versatility and its beginner-friendliness have made it one of the most used
programming languages today.<br>
* In 2020, more than one-third of Indian IT professionals said Python was their
preferred programming language [2]. It continues to top lists of the most desired programming languages in
the country.<br><br>
<b>* Did you know ?</b> <br><br>
->The name Python comes from Monty Python. When Guido van Rossum was creating
Python, he was also reading the scripts from BBC's Monty Python's Flying Circus. He thought the name Python
was appropriately short and slightly mysterious.<br><br>
<b>* Python is commonly used for developing :-></b><br>
-> websites and software,<br> ->task automation,<br> ->data analysis, and<br> ->data
visualisation.<br><br>
<b>* Since</b> it’s relatively easy to learn, Python has been adopted by many non-programmers, such as
accountants and scientists, for a variety of everyday tasks, like organising finances.
"Writing programs is a very creative and rewarding activity," says University of Michigan and Coursera
instructor Charles R Severance in his book Python for Everybody. "You can write programs for many reasons,
ranging from making your living to solving a difficult data analysis problem to having fun to helping
someone else solve a problem."<br>
<br><b># What can you do with Python? Some things include :-></b><br><br>
-> Data analysis and machine learning<br>
->Web development<br>
->Automation or scripting<br>
->Software testing and prototyping<br>
->Everyday tasks<br>
</p>
</div>
<div>
<h3> 02. PYTHON USES & SYNTAX ?</h3>
<p class="p-4 text-justify">
<b>>>> print("Hello, World!")
</b> <br><br>
<b> Python</b> is a high-level, general-purpose programming language. Its design philosophy emphasizes code
readability with the use of significant indentation. Python is dynamically typed and garbage-collected. It
supports multiple programming paradigms, including structured, object-oriented and functional programming.<br><br>
# Designed by: Guido van Rossum <br>
# Developer: Python Software Foundation<br>
# First appeared: 20 February 1991; 33 years ago<br>
# OS: Windows, macOS, Linux–Unix, Android, Unix-like, BSD variants and a few other platforms<br>
# Paradigm: Multi-paradigm: object-oriented, procedural (imperative), functional, structured, reflective
# Stable release: 3.12.3 / 9 April 2024; 7 days ago<br>
# Typing discipline: duck, dynamic, strong; optional type annotations (since 3.5, but those hints are ignored,
except with unofficial tools)
</p>
</div>
<!------------------- Footer --------------------------------------------------------->
<footer class="footer">
<div class="row2">
<div class="col">
<img src="logo.png" class="logo">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
</div>
<div class="col">
<h3>Office <div class="underline"><span></span></div></h3>
<p>07 street , CHHOTI BALLIA</p>
<p>LAKHMINIA , BEGUSARAI</p>
<p>BIHAR , PIN - 851211, INDIA</p>
<p class="email-id">ankitpoddar07++@gmail.com</p>
<h4>+91 - 0123456789</h4>
</div>
<div class="col">
<ul>
<h3>Links <div class="underline"><span></span></div></h3>
<li><a href="website.html">Home</a></li>
<li><a href="">Services</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="history.html">History</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="social-icons">
<i class="fa-brands fa-facebook"></i>
<a href="https://x.com/ankitpo47153377"><i class="fa-brands fa-twitter"></i></a>
<i class="fa-brands fa-whatsapp"></i>
<a href="https://x.com/ankitpo47153377"><i class="fa-brands fa-pinterest"></i></a>
<a href="https://www.instagram.com/ankitpoddar_/"><i class="fa-brands fa-square-instagram"></i></a>
</div>
</div>
</div>
<hr>
<p class="copyright">Copyright @ 2023 - All Rights Reserved to Ankit Poddar</p>
</footer>
</body>
</html>