- Python : 3.7.3
- OS : Ubuntu 18.04.2 LTS
- IDE : pycharm-community-2019.1.3
- Conda : 4.7.5
- typesetting : Markdown
""" @Author : 行初心 @Date : 2019/7/7 @Blog : www.cnblogs.com/xingchuxin @Gitee : gitee.com/zhichengjiu """ def main(): num = 1 if num is not None: print("num is not None") if __name__ == '__main__': main()
/home/coder/anaconda3/envs/py37/bin/python /home/coder/PycharmProjects/Base/demo.py num is not None Process finished with exit code 0
Python具备开源、跨平台、解释型、交互式等特性,值得学习。
Python的设计哲学:优雅,明确,简单。提倡用一种方法,最好是只有一种方法来作一件事。
代码的书写要遵照规范,这样有助于沟通和理解。
每种语言都有独特的思想,初学者须要转变思惟、踏实践行、坚持积累。python