Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Status/Day 1.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,15 @@ num = int(input("Number: "))
print(dict(enumerate([i*i for i in range(1, num+1)], 1)))
```
---
'''Python
'''Solution by: Vineeth Kedasu
'''
d = {}
i = int(input())
for j in range (1,i+1):
dict[j] = j**2
print(dict)
---
## Conclusion

**_These was the solved problems of day 1. The above problems are very easy for the basic syntex learners.I have shown some easy ways of coding in my solutions. Lets see how to face and attack new problems in the next day._**
Expand Down