博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Python] Reuse Code in Multiple Projects with Python Modules
阅读量:6270 次
发布时间:2019-06-22

本文共 634 字,大约阅读时间需要 2 分钟。

A module is a function extracted to a file. This allows you to import the function and use it in any other code you may write. You’ll learn how to create modules, import them, and make them stand-alone as you learn what if __name__ == “__main__” means in Python.

 

If we excute the file in REPL, __bname__ is __main__, if we import the file as module, __name__ is file name.

def total(n):    tax_rate = .07    return n * tax_rate + ndef tax_amount(n):    tax_rate = .07    return n * tax_rate# Provide a standalone way for user to use with CMD# python3 tax.py 10if __name__ == "__main__":    import sys    print(total(int(sys.argv[1])))

 

转载地址:http://zxppa.baihongyu.com/

你可能感兴趣的文章
spring mysql多数据源配置
查看>>
[React] Override webpack config for create-react-app without ejection
查看>>
检索 COM 类工厂中 CLSID 为{00024500-0000-0000-C000-000000000046} 的组件时失败,原因是出现以下错误: 80070005。...
查看>>
测试java的父子类化
查看>>
HDOJ 1008
查看>>
安装thrift出现的一些问题
查看>>
makefile编写---单个子目录编译模板
查看>>
Oracle DB_LINK如何使用
查看>>
cv resource
查看>>
关于加快INSERT语句执行速度和HINT /*+ append */及/*+ append nologging */的使用
查看>>
JDK源代码学习系列07----Stack
查看>>
firefox
查看>>
PS批处理的使用
查看>>
七天学会ASP.NET MVC (一)——深入理解ASP.NET MVC 【转】
查看>>
Quartz作业调度框架
查看>>
腾讯云下安装 nodejs + 实现 Nginx 反向代理
查看>>
js-权威指南学习笔记13
查看>>
《超级时间整理术》晨读笔记
查看>>
Spring Boot 2.0(二):Spring Boot 2.0尝鲜-动态 Banner
查看>>
Delphi IdTCPClient IdTCPServer 点对点传送文件
查看>>