8000 add: clarity and materials for early chapters · talkpython/vscode-python-course@b20e2da · GitHub
[go: up one dir, main page]

Skip to content

Commit b20e2da

Browse files
committed
add: clarity and materials for early chapters
1 parent 8fb984b commit b20e2da

File tree

7 files changed

+25
-0
lines changed

7 files changed

+25
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
There are no specific code or materials to use for this chapter of the course.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
There are no specific code or materials to use for this chapter of the course.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
There are no specific code or materials to use for this chapter of the course.
2+
3+
However, for the "Explorer Workspaces" video, if you'd like to follow along with what's shown you can use the materials found in the [base folder](../base/) of this repository.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Most of the materials for this chapter are provided within this folder. However, for the videos titled "Linting and Formatting Code", "Refactoring Code with VS Code", and "Code Snippets" in this chapter refer to the materials/code found in the [06-running-and-debugging folder](../06-running-and-debugging/). Use VS Code to open that folder so that you may try what's shown in the video.

demo-code/04-editing-code/demo

Lines changed: 2 additions & 0 deletions
Original file line 8000 numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
print('hello world')
2+
from x import y

demo-code/04-editing-code/demo.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
print('hello world')
2+
from x import y
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// Place your snippets for python here. Each snippet is defined under a snippet name and has a prefix, body and
3+
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
4+
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
5+
// same ids are connected.
6+
// Example:
7+
"Print to console": {
8+
"prefix": "log",
9+
"body": [
10+
"console.log('$1');",
11+
"$2"
12+
],
13+
"description": "Log output to console"
14+
}
15+
}

0 commit comments

Comments
 (0)
0