Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Basics Functions and Looping While Loops

aditya verma
aditya verma
1,853 Points

If there are multiple ways to do same thing, how to decide which one is better?

On what basis do we decide this is better or worse than any other code that does the same thing. Just wondering, thanks!

count=0
attempt=input('enter password ')
while count<3: 
    if attempt!='opensesame':
        print('please try again')
        attempt=input('enter password ')
        count+=1 
    else:
        print('welcome') 
        count=4
if count ==3:
    print('you have exhausted your attempts')

[Mod: added ```python formatting -cf]

1 Answer

Steven Parker
Steven Parker
229,644 Points

You'll often find situations where more than one approach will give the same result. In those cases, additional criteria you might use to decide might be which one is clearer to read (and easier to maintain) and/or which one executes the most efficiently and/or which one yields the most compact code.