Skip to main content
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
Search options not deleted user 71696

Python 2 is the predecessor of Python 3 and its last version, Python 2.7 was formally released on July 3, 2010. Use this tag along with the main python tag to denote programs that are meant to be run on a Python 2 interpreter only. Do not mix this tag with the python-3.x tag.

2 votes
2 answers
525 views

Decompress files files in a directory recursively

Currently I'm trying to redo this code to avoid the breaking line because of the 80 characters rule: def decompress_all(directory_path, remove_after): """ """ try: if 0 in [ decom …
Amanda Ferrari's user avatar
5 votes
3 answers
9k views

Transforming tuple with (int month, int year) in string "mm/yyyy"

I would like to improve the following code: result = database.execute(script, fetch="0") # (6, 2016) for example month = str(result[0]) year = str(result[1]) if len(month) == 1: …
Amanda Ferrari's user avatar