You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<buttonclass="btn btn-md btn-primary "><ahref="../python.html"><iclass="fas fa-arrow-left "></i> Back to Index</a></button>
70
-
<br>
71
-
<center>
72
-
<h2>Python Introduction</h2><br>
73
-
</center>
70
+
</div>
71
+
<divclass="wrapper">
72
+
<h2>Python Introduction</h2>
73
+
74
74
<h2>What is Python?</h2>
75
75
76
76
<p>Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development,
77
77
as well as for use as a scripting or glue language to connect existing components together. Python's simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and
78
-
packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed.<br>Often,
79
-
programmers fall in love with Python because of the increased productivity it provides. Since there is no compilation step, the edit-test-debug cycle is incredibly fast. Debugging Python programs is easy: a bug or bad input will never
80
-
cause a segmentation fault. Instead, when the interpreter discovers an error, it raises an exception. When the program doesn't catch the exception, the interpreter prints a stack trace. A source level debugger allows inspection of local
81
-
and global variables, evaluation of arbitrary expressions, setting breakpoints, stepping through the code a line at a time, and so on. The debugger is written in Python itself, testifying to Python's introspective power. On the other hand,
82
-
often the quickest way to debug a program is to add a few print statements to the source: the fast edit-test-debug cycle makes this simple approach very effective.<br> Python is a popular programming language. It was created by Guido van
83
-
Rossum, and released in 1991.</p>
78
+
packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed.
79
+
<br>Often, programmers fall in love with Python because of the increased productivity it provides. Since there is no compilation step, the edit-test-debug cycle is incredibly fast. Debugging Python programs is easy: a bug or bad input
80
+
will never cause a segmentation fault. Instead, when the interpreter discovers an error, it raises an exception. When the program doesn't catch the exception, the interpreter prints a stack trace. A source level debugger allows inspection
81
+
of local and global variables, evaluation of arbitrary expressions, setting breakpoints, stepping through the code a line at a time, and so on. The debugger is written in Python itself, testifying to Python's introspective power. On the
82
+
other hand, often the quickest way to debug a program is to add a few print statements to the source: the fast edit-test-debug cycle makes this simple approach very effective.<br> Python is a popular programming language. It was created
83
+
by Guido van Rossum, and released in 1991.</p>
84
84
<h2>Who manages Python Today?</h2>
85
85
86
86
<p>From version 2.1 onwards, Python is managed by Python Software Foundation situated in Delaware, USA It is a non-profit organization devoted to the growth and enhancement of Python language. Their website is http://www.python.org .</p>
@@ -169,7 +169,9 @@ <h2>IDE</h2>
169
169
and they are free, but they have less features. PyCharm Edu provides courses and helps you learn programming with Python. The Professional edition is commercial, and provides an outstanding set of tools and features.</p>
170
170
<h2>Installing Pycharm</h2>
171
171
<ol>
172
-
<li>To download Pycharm visit the website https://www.jetbrains.com/pycharm/download</li>
0 commit comments