Ch计算与计算思维分析.pptVIP

  • 2
  • 0
  • 约5.57千字
  • 约 41页
  • 2016-11-25 发布于湖北
  • 举报
第一个程序:HelloWorld 程序文件 将语句保存在纯文本文件hello.py中 四种执行方式 在IDLE中用Run Module菜单执行 双击hello.py文件图标 import hello C:\Python27 python hello.py * print Hello, World! * 程序实例 #convert.py # A program to convert Celsius temps to Fahrenheit # by: Susan Computewell def main(): celsius = input(What is the Celsius temperature? ) fahrenheit = (9.0/5.0) * celsius + 32 print The temperature is ,fahrenheit, degrees Fahrenheit. main() * 程序构件:数据 数据是被处理的信息 有不同类型的数据 字符串数据 print Hello, World! 数值数据 print 3.1415 * * 程序构件:变量 和数学类似:用一个名字表示可变的数据 数学中多用单字母,程序中多用单词/词组 标识符:Python命名 以字母

文档评论(0)

1亿VIP精品文档

相关文档