Search Results
| Search type | Search syntax |
|---|---|
| Tags | [tag] |
| Exact | "words here" |
| Author | user:1234 user:me (yours) |
| Score | score:3 (3+) score:0 (none) |
| Answers | answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
| Views | views:250 |
| Code | code:"if (foo != bar)" |
| Sections | title:apples body:"apples oranges" |
| URL | url:"*.example.com" |
| Saves | in:saves |
| Status | closed:yes duplicate:no migrated:no wiki:no |
| Types | is:question is:answer |
| Exclude | -[tag] -apples |
| For more details on advanced search visit our help page | |
Results tagged with python
Search options not deleted user 111544
Python is an interpreted, general-purpose high-level programming language whose design philosophy emphasizes code readability. Use the python tag for all Python related questions. If you believe your question may be even more specific, you can include a version specific tag such as python-3.x.
6 votes
2 answers
3k views
Counting senders in a mailbox
I'm learning Python from Coursera and am doing a class. … The program creates a Python dictionary that maps the sender's mail address to a count of the number of times they appear in the file. …
2 votes
1 answer
77 views
Change passwords after being validated
I recently posted a program that I wrote that would change a password after being validated, the program can be found here. I have rewritten this program, it has a couple new features: Usernames De …
5 votes
1 answer
200 views
Escalation approval tool, copy to clipboard via Python
I created a simple little script for the people I work with, what it does is copy information to the users clipboard for escalation approvals. It's pretty simple and not very exciting but I want to kn …
3 votes
1 answer
3k views
Change password after being validated
I'm doing Python programming challenges and have come across one where the object of the challenge was to create a script to change passwords. …
1 vote
1 answer
9k views
First time ATM machine program
I have created a gorgeous ATM machine program. It makes all other ATMs look like crap, if I do say so myself. What I would like is some sort of critique on what I've done: Is there better syntax I c …
2 votes
2 answers
2k views
Calculate 6 business days
I wrote a little class that will calculate 6 business days from today. The reason it's in a class is because it will be used as a part of a bigger program. I would like a way to refactor this class a …
1 vote
1 answer
7k views
Password validator using regular expressions
I wanted to learn some regex, but learning regex is super boring so I decided to write a password validator that will validate a password with regular expressions. How it works: You enter a passwor …
3 votes
1 answer
13k views
Simple email validation script
C:\challenges>python email_val.py Enter your email address: [email protected] Your email is not valid. Failed length check. … C:\challenges>python email_val.py Enter your email address: [email protected] Email is a valid email address. …
7 votes
3 answers
7k views
Simple Python hangman game
I've created a little hangman game. It's pretty simple, and not to exciting but I want to know if there's a way I could turn this little game into something more extravagant and more exciting. How can …