博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
与孩子一起学编程15章
阅读量:4973 次
发布时间:2019-06-12

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

模块(module),简单说是一个python文件,可以这样创建

# this is the file "my_module.py"# we're going to use it in another programdef c_to_f(celsius):    fahrenheit = celsius * 9.0 / 5 + 32    return fahrenfeit

嗯,就是这样。

 

如何使用呢,导入模块用关键字import,这样导入上面的新建模块

import my_module

写一个代码试试怎么使用上面的名为my_module.py模块

import my_modulecelsius = float(raw_input("enter a temperature in Celsius: "))fahrenheit = c_to_f(celsius)print "That's ", fahrenheit, " degrees Fahrenheit"

要把模块文件放在一个python能找到的地方,试试看吧。

 

python提供了大量标准模块,先来看看time模块

import timeprint "how",time.sleep(2)print "are",time.sleep(2)print "you",time.sleep(2)print "today?"

python的特点就是模块,除了标准模块外,还有很多实用的第三方模块,我们后面就会用一个图形模块pygame。

 

下一次,就来介绍这个。

 

转载于:https://www.cnblogs.com/pangblog/p/3341882.html

你可能感兴趣的文章
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
两个表格中数据不用是一一对应关系--来筛选不同数据,或者相同数据
查看>>
hiho_offer收割18_题解报告_差第四题
查看>>
AngularJs表单验证
查看>>
静态方法是否属于线程安全
查看>>
02号团队-团队任务3:每日立会(2018-12-05)
查看>>
SQLite移植手记1
查看>>
js05-DOM对象二
查看>>
mariadb BINLOG_FORMAT = STATEMENT 异常
查看>>
iPhone在日本最牛,在中国输得最慘
查看>>
动态方法决议 和 消息转发
查看>>
C#生成随机数
查看>>
Java回顾之多线程
查看>>
机电行业如何进行信息化建设
查看>>