Skip to content

Commit b6a4481

Browse files
authored
Update Day_10.md
1 parent a64c239 commit b6a4481

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Status/Day_10.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ printDict()
5555
**My Solution: Python 3**
5656
```
5757
def printDict():
58-
dict = {i: i ** 2 for i in range(1, 21)}
58+
dict = {i: i**2 for i in range(1, 21)}
5959
print(dict.keys()) # print keys of a dictionary
6060
6161
printDict()

0 commit comments

Comments
 (0)