-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (30 loc) · 1.46 KB
/
index.html
File metadata and controls
44 lines (30 loc) · 1.46 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
<!DOCTYPE html>
<html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Begin to code with Python</h1>
<p>Welcome to the Begin to code with Python web pages.</p>
<p>You can buy the book <a href="http://a.co/abCAG81">here</a>.
</p>
<p>You can find the tools for the book <a href="tools.html">here</a>.
</p>
<p>You can find some videos about installing Snaps and Python <a href="https://www.youtube.com/playlist?list=PL7zNOp_WVLyUZ5XoCP2w0Uhy02PnX5W9m">here</a>.
</p>
<p>You can find my blog at <a href="https://www.robmiles.com/">www.robmiles.com</a>.
</p>
<h2>Importing Snaps</h2>
<p>There is an error on page 66. Rather than it saying:</p>
<p class="code">from snaps import * </p>
<p>It should just say: </p>
<p class="code">import snaps</p>
<p>To make snaps work you just have to have the snaps program in the same folder as your program.</p>
<h2>Using the keyboard with Snaps</h2>
<p>There have been some reports of the keyboard reading function in Snaps not working correctly when you run your Python program from within an IDE such as pyCharm or IDLE. If you find the keyboard to be unresponsive, try running the Python program directly in Python, rather than inside an IDE.</p>
<p>If you have any questions about the links, the sample programs, or the book, you can get in touch with me via email on questions at begintocodewithpython.com. You can also tweet any questions to @begintocode or @robmiles
</p>
<p>Rob Miles</p>
</body>
</html>