Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Comments on Tips for golfing in Python

Parent

Tips for golfing in Python

+2
−0

If you have any tips for golfing in Python, add them as answers to this post.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

0 comment threads

Post
+1
−0

If you have a loop or if, you can save two or more characters (depending on the current indentation level and the number of statements in the body) by putting it right after the colon:

For example, assume you have this loop with 33 characters:

for x in a:
 do_something_with(x)

Since you've got just one statement, you can delete the newline character and the following indentation space, in order to get 31 characters:

for x in a:do_something_with(x)

If the body has more than one statement, those can be separated with semicolon. For example

if (condition):
 do_something()
 do_more()

becomes

if condition:do_something();do_more()

Thanks to @Moshi for pointing out that it also works with several statements.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

2 comment threads

You can use this trick with more than one statement by using semicolons (2 comments)
General (2 comments)
General
General Sebast1an‭ wrote over 2 years ago

I don't understand why a semicolon is there. It's unnecessary if you placed the next code in a newline or no code succeeds it.

celtschk‭ wrote over 2 years ago

I'm just too used to write C++ code that requires it, so I tend to write them without even noticing. Thanks for catching that.