欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

第一章实例代码

程序员文章站 2024-02-28 17:19:10
...
python语言程序设计基础(第2版) 实例代码1.1~1.5
print("hello world")
print("祖国,你好")
#m1.1CalCircleArea.py
radius = 25  #圆的半径是25
area = 3.1415 * radius * radius  #输入计算圆面积的公式
print(area)
print("{:.2f}".format(area))  #只输出两位小数
#m1.2EchoName.py
name = input("输入姓名:")
print("{}同学,学号python,前途无量!".format(name))
print("{}大侠,学好python,大展拳脚!".format(name[0]))
print("{}哥哥,学好python,人见人爱!".format(name[1:]))
#m1.3CalFibonacci.py
a, b = 0, 1
while a < 1000:  #输出不大于1000的斐波那契数列
    print(a, end=',')
    a, b = b, a+b
#m1.4DrawTangentCircles.py
import turtle  #调用turtle库
turtle.pensize(2)  #设置画笔宽度为2像素
turtle.circle(10)  #绘制半径为10像素的圆
turtle.circle(40)  #绘制半径为40像素的圆
turtle.circle(80)  #绘制半径为80像素的圆
turtle.circle(160)  #绘制半径为160像素的圆
#1.5PrintLocalDateTime.py
from datetime import datetime  #调用datetime库
now = datetime.now()  #获取当前日期和时间信息
print(now)
print(now.strftime("%x"))  #输出其中的日期部分
print(now.strftime("%X"))  #输出其中的时间部分