Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 175983
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T13:47:45+00:00 2026-05-11T13:47:45+00:00

I hope this question is considered appropriate for stackoverflow. If not, I’ll remove the

  • 0

I hope this question is considered appropriate for stackoverflow. If not, I’ll remove the question right away.

I’ve just wrote my very first python program. The idea is that you can issue a command, and it’s gets sent to several servers in parallel.

This is just for personal educational purposes. The program works! I really want to get better at python and therefore I’d like to ask the following questions:

  1. My style looks messy compared to PHP (what I’m used to). Do you have any suggestions around style improvements.
  2. Am I using the correct libraries? Am I using them correctly?
  3. Am I using the correct datatypes? Am I using them correctly?

I have a good programming background, but it took me quite a while to develope a decent style for PHP (PEAR-coding standards, knowing what tools to use and when).

The source (one file, 92 lines of code)

http://code.google.com/p/floep/source/browse/trunk/floep

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T13:47:45+00:00Added an answer on May 11, 2026 at 1:47 pm

    Usually is preferred that what follows after the end of sentence : is in a separate line (also don’t add a space before it)

    if options.verbose:   print '' 

    instead of

    if options.verbose : print '' 

    You don’t need to check the len of a list if you are going to iterate over it

    if len(threadlist) > 0 :    for server in threadlist :     ... 

    is redundant, a more ‘readable’ is (python is smart enough to not iterate over an empty list):

    for server in threadlist:   ... 

    Also a more ‘pythonistic’ is to use list’s comprehensions (but certainly is a debatable opinion)

    server = [] for i in grouplist : servers+=getServers(i) 

    can be shortened to

    server = [getServers(i) for i in grouplist] 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 90k
  • Answers 90k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Public Class foo Public Event TestEvent() End Class Public Class… May 11, 2026 at 6:03 pm
  • Editorial Team
    Editorial Team added an answer http://tinymce.moxiecode.com/examples/full.php Shrug, works fine for me. May 11, 2026 at 6:03 pm
  • Editorial Team
    Editorial Team added an answer You are not going to find ONE way that will… May 11, 2026 at 6:03 pm

Related Questions

I hope this question is considered appropriate for stackoverflow. If not, I'll remove the
I hope this question is not considered too basic for this forum, but we'll
I hope this isn't considered a duplicate since it's more pointed than similar questions
There are lots of mocking frameworks out there for .Net. There is no clear
this question can create a misunderstanding: I know I have to use CSS to

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.