Skip to content

Commit 3081b42

Browse files
committed
spelling mistakes corrected
1 parent 19fe701 commit 3081b42

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

python/lesson2/tutorial.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ Now type `profit` to see the results of this calculation.
3131

3232
Now work out how much money a sponsor at codebar would spend on pizza if they had 60 students turn up?
3333

34-
Along with pizza, students and cost, what oher variables can you think of that could go into this calculation?
34+
Along with pizza, students and cost, what other variables can you think of that could go into this calculation?
3535

3636
### Storing text in variables
3737

38-
As well as numbers varaiables are able to store text, known in Python as strings.
38+
As well as numbers variables are able to store text, known in Python as strings.
3939

40-
Now in the REPl type:
40+
Now in the REPL type:
4141

4242
name = 'codebar'
4343
url = "codebar.io"
4444

45-
Now type `name' and `url` to see these strings shown back to you. As you can see Python allows both single and double quotes to denote a string variable. Double quotes are required if there is going to be an apostrophe in the string.
45+
Now type `name` and `url` to see these strings shown back to you. As you can see Python allows both single and double quotes to denote a string variable. Double quotes are required if there is going to be an apostrophe in the string.
4646

4747
For exmaple:
4848

0 commit comments

Comments
 (0)