There was an error while loading. Please reload this page.
1 parent a64c239 commit b6a4481Copy full SHA for b6a4481
Status/Day_10.md
@@ -55,7 +55,7 @@ printDict()
55
**My Solution: Python 3**
56
```
57
def printDict():
58
- dict = {i: i ** 2 for i in range(1, 21)}
+ dict = {i: i**2 for i in range(1, 21)}
59
print(dict.keys()) # print keys of a dictionary
60
61
printDict()
0 commit comments