-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (62 loc) · 2.56 KB
/
Copy pathindex.html
File metadata and controls
84 lines (62 loc) · 2.56 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="MACbioIdi. Python basics for 3DSlicer" />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>Marilola for MACbioIDi</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<h1 id="project_title">Basics for 3DSlicer</h1>
<h3 id="project_tagline"> Python </h3>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<h6> The joy of coding Python should be in seeing short, concise, readable classes that express a lot of action in a small amount of clear code --
not in reams of trivial code that bores the reader to death. </h6>
<a href="https://es.wikipedia.org/wiki/Guido_van_Rossum" target="_blank"><p><cite>Guido van Rossum</cite></p></a>
<hr>
<h2>Python basics</h2>
<p> Python is an interpreted, high-level, general-purpose programming language. It supports multiple programming paradigms, including object-oriented, imperative,
functional and procedural. It features a dynamic type system and automatic memory management. Is an easily readable language and its formatting is visually uncluttered.</p>
<a href="https://docs.python.org/3/tutorial/index.html" target="_blank"><p><cite>Python tutorial</cite></p></a>
<hr>
<h3>Lesson 1</h3>
<li><a href="http://nbviewer.jupyter.org/url/Mltechbox.github.io/Python/Lessons/01.ipynb" target="_blank">Basics</a></li>
<h3>Lesson 2</h3>
<li>Scopes and NameSpaces</li>
<li>Clases</li>
<h3>Lesson 3</h3>
<li>Functional Programming</li>
<li>Design Patterns</li>
<h3>Lesson 4</h3>
<li>Numpy</li>
<li>MatPlotlib</li>
<hr>
<a href="https://docs.python.org/3/tutorial/index.html" target="_blank"><p><cite>More information...</cite></p></a>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<table frame="hsides" rules="none">
<tr>
<td>
<p><a href="https://www.ulpgc.es"target="_blank"><img src="images/Logo.png" width="150" height="75" alt="ULPGC"></a></p>
</td>
<td>
<p>MACbioIDi for <a href="https://mt4sd.ulpgc.es/es/" target="_blank">Medtec4susdev</a></p>
<p>Published with <a href="http://pages.github.com" target="_blank">GitHub Pages</a></p>
</td>
</tr>
</table>
</footer>
</div>
</body>
</html>