Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
CSE16249
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SREERAM KEERTHAN PARUCHURU
CSE16249
Repository
74e1057250377a57bb57404a1b351e8331b7f60d
Select Git revision
Selected
74e1057250377a57bb57404a1b351e8331b7f60d
Branches
1
master
default
protected
2 results
Show more breadcrumbs
cse16249
cse16249_ex3_1.py
cse16249_ex3_1.py
Find file
Blame
Edit
Open in Web IDE
.
Quickly and easily edit multiple files in your project.
Edit single file
Edit this file only.
File actions
Find file
t
Blame
Copy permalink
y
Copy contents
Open raw
Download
6 years ago
74e10572
initial commit
· 74e10572
SREERAM KEERTHAN PARUCHURU
authored
6 years ago
74e10572
History
initial commit
SREERAM KEERTHAN PARUCHURU
authored
6 years ago
cse16249_ex3_1.py
104 B
1
2
3
4
5
6
7
8
9
f
=
open
(
"
sw.txt
"
,
"
r
"
)
for
i
in
f
.
read
().
split
():
if
(
i
in
d
.
keys
()):
d
[
i
]
+=
1
else
:
d
[
i
]
=
1
print
(
d
)