-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathabout.php
More file actions
67 lines (67 loc) · 2.29 KB
/
about.php
File metadata and controls
67 lines (67 loc) · 2.29 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
<!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="_blank" rel="noopener noreferrer">
Loyola University Chicago - Dr. Andrew N. Harrington</a>
<li>
<a href=http://mcsp.wartburg.edu/zelle/cs220/ target="_blank" rel="noopener noreferrer" >
Wartburg College -
John M. Zelle -
CS 220: OOP and Data Structures
</a></li>
<li>
<a href=http://coweb.cc.gatech.edu/cs1315 target="_blank" rel="noopener noreferrer">
Gergia Tech -
Colin Potts and Monica Sweat</a>
</a></li>
<li><a href=http://www.cs.sfu.ca/CC/120/diana/ target="_blank" rel="noopener noreferrer">
Simon Frasier University -
Diana Cukierman -
CMPT 120 -
</a></li>
<li><a href=http://web.cse.msu.edu/~cse231/ target="_blank" rel="noopener noreferrer">
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="_blank" rel="noopener noreferrer" >
Bryn Mawr University -
Dianna Xu and Deepak Kuma
</a></li>
<li><a href=http://courses.csail.mit.edu/6.01/ target="_blank" rel="noopener noreferrer">
MIT -
Intro to EECS I</a>
</ul>
<a href=http://www.python.org/ target="_blank" rel="noopener noreferrer">
<img src="python-powered-h-100x130.png" alt="Python logo" 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>