Skip to content

Commit 9e542ee

Browse files
LLM study instructions, conditionals update
1 parent 493fa10 commit 9e542ee

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

2__python_self_study_1/studying_with_llms.instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Welcome to JS is a module that introduces foundational programming skills with
1616
granular exercises using Just Enough Python (jeP), a subset of Python
1717
for creating small, imperative programs that:
1818

19-
- Interact with users via prompt/alert/confirm
19+
- Interact with users via print/input
2020
- Focus on basic string manipulations because this is less abstract than math or
2121
data structures
2222

2__python_self_study_1/studying_with_llms.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Studying with LLMs
22

33
LLMs exists and can code, we know this. And you will use it, we know this too.
4-
So here's our advice on how to use generative AI when studying Welcome to JS:
4+
So here's our advice on how to use generative AI when studying Programming with Python:
55

66
Generative AI can write and explain code for you, but writing and explaining
77
code are not the most important skills a developer needs. More importantly, a
@@ -16,7 +16,7 @@ developer needs to _understand_ a program, its purpose and its context:
1616
how to ask these questions very clearly otherwise AI will become a crutch, not a
1717
tool.
1818

19-
Welcome to JS covers the hidden skills behind understanding, discussing,
19+
Programming with Python covers the hidden skills behind understanding, discussing,
2020
planning and writing programs. Every learning objective in this module is a
2121
skill you should master without the help of AI - you can use AI for help
2222
learning each skill, but you have only mastered a skill when you can complete
@@ -60,18 +60,17 @@ to your chat with an LLM, this will work better with some LLMs than with others.
6060
If you're not able to upload the files, you can copy-paste the first one as your
6161
first message:
6262

63-
- **[welcome-to-js.llm-instructions.md](./welcome-to-js.llm-instructions.md)**:
64-
This document helps the LLM understand Welcome to JS.
65-
- **[welcome-to-js.llm-examples.md](./welcome-to-js.llm-examples.md)**: This
63+
- **[studying_with_llms.instructions.md](./studying_with_llms.instructions.md)**:
64+
This document helps the LLM understand Programming with Python.
65+
- **[studying_with_llms.examples.md](./studying_with_llms.examples.md)**: This
6666
document has example programs the LLM can use for additional inspiration.
6767

6868
> PS. These documents are a work-in-progress. Send us a PR when you find room
6969
> for improvement!
7070
7171
### Start with this Template
7272

73-
Below is a template prompt you can use with or without
74-
`welcome-to-js.llm-context.md` to get your study sessions off to a good start:
73+
Below is a template prompt you can use to get your study sessions off to a good start:
7574

7675
```
7776
I would like to practice <skill>.
@@ -116,7 +115,7 @@ Here are some general tips for collaborating with LLMs when studying:
116115

117116
### Specific Strategies
118117

119-
Welcome to JS will also introduce strategies for collaborating with generative
118+
Programming with Python will also introduce strategies for collaborating with generative
120119
AI on specific skills like debugging, documenting, logging, ... but only after
121120
you have practiced the skill without the help of AI. These strategies are
122121
included in each chapter where they fit best.

2_predictive_stepping/examples/07_conditionals.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
88
"""
99

10+
1011
prompt_1 = '-> Do you want to save your input? \n \
1112
Enter "Y" for yes, anything else for no: '
1213
prompt_2 = '-> Do you want to save your input? \n \

0 commit comments

Comments
 (0)