Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ed876e4

Browse files
committedJan 15, 2024
Language changes
1 parent 93f0d23 commit ed876e4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎Strings/Character escaping/character_escaping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dont_worry = "Don't worry about single quote if the string is in double quotes and vice versa"
1+
dont_worry = "Don't worry about single quotes if the string is in double quotes, and vice versa"
22
print(dont_worry)
33

44
print("\"Sweet\" is an ice-cream")

‎Strings/Character escaping/task-info.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ files:
33
- name: character_escaping.py
44
visible: true
55
placeholders:
6-
- offset: 157
6+
- offset: 159
77
length: 47
88
placeholder_text: ???
99
- name: tests/__init__.py

‎Strings/String length/task.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ s = "Hello World"
88
print(len(s)) # will print 11
99
```
1010

11-
Note, that result of `/` division have type float:
11+
Note that the result of the `/` division operation is of type float:
1212
```python
1313
a = 10/2
1414
print(a) # 5.0

0 commit comments

Comments
 (0)
Please sign in to comment.