-
Notifications
You must be signed in to change notification settings - Fork 229
/
about.php
67 lines (67 loc) · 2.04 KB
/
about.php
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<?php include("header.php"); ?>
</head>
<body>
<?php include("nav.php"); ?>
<div id="main">
<p>
PythonLearn is intended to collect a set of generic Python Learning Resources
to allow self-paced learning of the Python Language.
</p>
<h3>Other Python Courses</h3>
<p>
This is a list of other courses that I have found using Python
to teach introductory programming.
<ul>
<li>
<a href=http://www.cs.luc.edu/~anh/python/hands-on/ target=_new>
Loyola University Chicago - Dr. Andrew N. Harrington</a>
<li>
<a href=http://mcsp.wartburg.edu/zelle/cs220/ target=_new >
Wartburg College -
John M. Zelle -
CS 220: OOP and Data Structures
</a></li>
<li>
<a href=http://coweb.cc.gatech.edu/cs1315 target=_new>
Gergia Tech -
Colin Potts and Monica Sweat</a>
</a></li>
<li><a href=http://www.cs.sfu.ca/CC/120/diana/ target=_new>
Simon Frasier University -
Diana Cukierman -
CMPT 120 -
</a></li>
<li><a href=http://web.cse.msu.edu/~cse231/ target=_new>
Michigan State University -
Richard Enbody and Bill Punch -
CSE 231: Introduction to Programming I
</a></li>
<li><a href=http://www.cs.brynmawr.edu/cs110/dx/ target=_new >
Bryn Mawr University -
Dianna Xu and Deepak Kuma
</a></li>
<li><a href=http://courses.csail.mit.edu/6.01/ target=_new>
MIT -
Intro to EECS I</a>
</ul>
<a href=http://www.python.org/ target=_new>
<img src=python-powered-h-100x130.png align=right border=0 width=45/>
</a>
<p>
If you are teaching an introductory programming course using Python
at the college level - please drop me a note.
</p>
<p>
<strong>Note to people teaching Python: </strong> These materials are
Copyright Creattive Commons Attribution 2.5. You are welcome to use these
in your courses any way you like. You can make copies and host them yourselves if you like. Let me know if you need written permission - it will
be freely given - Charles Severance (www.dr-chuck.com).
</p>
</div>
<?php include("foot.php"); ?>
</body>
</html>