-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschedule.html
More file actions
97 lines (61 loc) · 2.93 KB
/
schedule.html
File metadata and controls
97 lines (61 loc) · 2.93 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
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<title> Software Carpentry Workshop Agenda </title>
<style>
#schedule td{
border-collapse: collapse;
border-left: none;
border-right: none;
}
</style>
</head>
<body>
<div class="container card">
<article>
<div class="row-fluid">
<div class="span10 offset1">
<h2>Advanced Programming in Python: Agenda</h2>
<p><strong>Venue: </strong><a href="http://data.southampton.ac.uk/room/58-1003.html">Room 1003</a>, Building 58, Highfield Campus</p>
<p>The following agenda outlines what will be taught on the course. Additional notes on the teaching materials will be made available shortly after the course.
</p>
<p>The software prerequisites for the lessons can be found <a href="prerequisites.html">here</a>. The course training materials (which you can revisit and follow at your leisure) are linked to from the topics below.
</p>
<p>The sessions run every <strong>monday</strong> from <strong>February 1 - March 21, 2016, 6:00 PM - 8:00 PM</strong></p>.
<p> <h3> Day 1: February 1 </h3></p>
<table class="table table-striped" id="schedule" rules="none">
<tr>
<td border="0 !important" width="100%" align="justify"> <strong><a href="http://devasenainupakutika.github.io/Python-Spring2016-CodeFirst/Southampton_SessionMaterial/Python_Basics_Session1.html">Python basics</a></strong> <br/>
<br/>
In this session, you'll learn the fundamentals of Python.
The following topics will be covered: <br/>
<ul>
<li>Basics - e.g. Starting Python, using variables</li>
<li>Working with arrays and lists</li>
<li>Basic program control - loops and conditionals</li>
<li>Creating and using functions</li>
<li>Using libraries</li>
</ul>
</td>
</tr>
</table>
<p> <h3> Day 2: February 8 </h3></p>
<table class="table table-striped" id="schedule" rules="none">
<tr>
<td border="0 !important" width="100%" align="justify"> <strong><a href="http://devasenainupakutika.github.io/Python-Spring2016-CodeFirst/Southampton_SessionMaterial/Session2_Part1.html">Reading, analysing data and Using Libraries</a></strong>, <strong><a href="http://devasenainupakutika.github.io/Python-Spring2016-CodeFirst/Southampton_SessionMaterial/Session2_Part2.html">Creating and Using functions.</a></strong> <br/>
<br/>
In this session, you'll learn how to define and use Python functions and a basic scientific data analysis using Surface temperature data and patient inflammation data.
The following topics will be covered: <br/>
<ul>
<li>Reading and analysing data</li>
<li>Using libraries</li>
<li>Creating and using functions</li>
</ul>
</td>
</tr>
</table>
</div>
</div>
</article>
</body>
</html>