Python论坛  - 讨论区

标题:[python-chinese] 更Pythonic的实现方式

2005年02月07日 星期一 21:12

limodou limodou at gmail.com
Mon Feb 7 21:12:24 HKT 2005

最后那几行我改成了:

    if os.path.exists(path1): return path1
    if os.path.exists(path2): return path2
    if os.path.exists(path3): return path3
    return os.getcwd()


Wang Kebo wrote:
> 以下的代码是从limodou的blog上截下来的。不过,总觉得这段代码不是太优雅,
> 谁可以想到更加pythonic的实现方式?我觉得这样的讨论,能使我们更加熟悉
> python的特性。
> 如果谁有精力,可以建立一个Python Quiz,类似于Ruby Quiz
> http://www.rubyquiz.com/
> 或Perl Quiz,
> http://perl.plover.com/qotw/
> 每星期出个小题目大家来讨论,看看怎样才是最优雅的实现方式。
>  
> 
>     def getHomeDir():
>         ''' Try to find user's home directory, otherwise return current
>     directory.'''
>         try:
>             path1=os.path.expanduser("~")
>         except:
>             path1=""
>         try:
>             path2=os.environ["HOME"]
>         except:
>             path2=""
>         try:
>             path3=os.environ["USERPROFILE"]
>         except:
>             path3=""
> 
>         if not os.path.exists(path1):
>             if not os.path.exists(path2):
>                 if not os.path.exists(path3):
>                     return os.getcwd()
>                 else: return path3
>             else: return path2
>         else: return path1
> 
>  
> 
> __
> Best Regards,
> Wang Kebo
> 
> HomePage: http://www.huihoo.org/~mep
> Blog: http://sharing.blogbus.com <http://sharing.blogbus.com/>
> 
> 
> ------------------------------------------------------------------------
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese

-- 
I love python!
My Blog: http://www.donews.net/limodou


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号