1
vote
1answer
41 views

Making a list from user input - follow-up

I have made the changes that people have suggested from my previous question. I want to try and make it even tidier if possible. What can I change to make it more optimized? My ...
3
votes
1answer
61 views

Making a list from user input

I have wrote a program that lets the user open up there text file that would look something like this: 1 2 3 4 5 6 It would then let the user enter a name for ...
4
votes
2answers
1k views

Counting letters in a text file

As a beginner Python programmer, I wrote a simple program that counts how many times each letter appears in a text file. It works fine, but I'd like to know if it's possible to improve it. ...