Skip to content

Commit f9ca925

Browse files
committed
Format changes
Update .gitignore
1 parent 04d37d0 commit f9ca925

File tree

9 files changed

+1082
-21080
lines changed

9 files changed

+1082
-21080
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ file_converter.py
44
Convert_and _move single.py
55
__pycache__/
66
temp.html
7+
markdown_converter.py
8+
markdown_template.html
9+
md_convert/
Lines changed: 65 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,71 @@
1-
<h3 id="downloading-and-installing-python">Downloading and Installing Python</h3>
2-
<p>The official python software (Interperter and IDLE) available at the official site: https://www.python.org</p>
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<title>Installing and Using Python</title>
9+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
10+
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
11+
12+
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
13+
14+
15+
<script>
16+
MathJax = {
17+
tex: { inlineMath: [['$', '$'], ['\\(', '\\)']] }
18+
};
19+
</script>
20+
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"></script>
21+
<style>
22+
blockquote {
23+
padding: 10px 20px;
24+
margin: 0 0 20px;
25+
font-size: 17.5px;
26+
border-left: 5px solid #3e3c3c;
27+
}
28+
29+
blockquote>p {
30+
margin-bottom: 0;
31+
}
32+
33+
.card {
34+
padding-left: 0;
35+
padding-right: 0;
36+
}
37+
</style>
38+
</head>
39+
40+
<body>
41+
42+
<div class="container">
43+
<h1>Installing and Using Python</h1><br>
44+
<h2>Downloading and Installing Python</h2>
45+
<p>The official python software (Interpreter and IDLE) available at <a href="https://www.python.org">the official site</a></p>
346
<p>For windows 32-bit: Click on Download option in the Downloads Menu</p>
4-
<p>For Windows 64-bit, MacOS and Linux/Unix, visit: https://www.python.org/downloads/</p>
5-
<hr />
6-
<h3 id="using-python">Using Python:</h3>
47+
<hr>
48+
<h2>Using Python</h2>
749
<p>The python code can be run in Interactive Console or Script present in IDLE.</p>
8-
<p>Other Integrated Development Environments like PyCharm IDE (Jet Brains), Visual Studio (MS) and Netbeans IDE may be used as needed.</p>
50+
<p>Other Integrated Development Environments like PyCharm IDE (Jet Brains), Visual Studio (MS) and Net Beans IDE may be used as needed.</p>
951
<p>For Interactive working for beginners, <a href="https://jupyter.org">Jupyter Notebooks</a> can be used</p>
10-
<hr />
11-
<h3 id="code-snippets-and-tutorials">Code Snippets and Tutorials:</h3>
52+
<hr>
53+
<h2>Code Snippets and Tutorials</h2>
1254
<p>The official Python Documentation may be viewed at or <a href="https://docs.python.org/">downloaded</a></p>
13-
<p>Other Private tutorials at:<br />
14-
1. <a href="https://www.tutorialspoint.com/python/index.htm">Tutorials Point</a><br />
15-
2. <a href="https://www.w3schools.com/python/">W3Schools</a><br />
16-
3. <a href="https://www.geeksforgeeks.org/python-programming-language/">Geeks for Geeks</a> </p>
17-
<hr />
18-
<h3 id="practice-code-at">Practice Code at:</h3>
55+
<p>Other Private tutorials at:</p>
1956
<ol>
20-
<li><a href="https://www.hackerrank.com/">HackerRank</a> </li>
57+
<li><a href="https://www.tutorialspoint.com/python/index.htm">Tutorials Point</a></li>
58+
<li><a href="https://www.w3schools.com/python/">W3Schools</a></li>
59+
<li><a href="https://www.geeksforgeeks.org/python-programming-language/">Geeks for Geeks</a></li>
60+
</ol>
61+
<hr>
62+
<h2>Practice Code at</h2>
63+
<ol>
64+
<li><a href="https://www.hackerrank.com/">HackerRank</a></li>
2165
<li><a href="https://www.hackerearth.com/">HackerEarth</a></li>
22-
</ol>
66+
</ol>
67+
</div>
68+
69+
</body>
70+
71+
</html>

0 commit comments

Comments
 (0)