python练习

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python练习相关的知识,希望对你有一定的参考价值。

Hello World!

print("Hello World")

运行结果:

技术分享

简单交互(交互式,文件式)教材P19

name = input("输入名字:")
print("{}同学,学好python,前途无量!".format(name))
print("{}大侠,学好python,前途无量!".format(name[0]))
print("{}哥哥,学好python,前途无量!".format(name[1:]))

运行结果:

技术分享

用户输入两个数字,计算并输出两个数字之和(尝试用一行代码实现)

print("结果为:%.2f"%(float(input(输入第一个变量:))+float(input(输入第二个变量:))))

运行结果:

技术分享

用户输入三角形三边长度,并计算三角形的面积:(海伦公式)

a=float(input("请输入三角形的第一条边:"))
b=float(input("请输入三角形的第二条边:"))
c=float(input("请输入三角形的第三条边:"))
p=float((a+b+c)/2)
area=float((p*(p-a)*(p-b)*(p-c))**0.5)
print("面积为:%.2f"%area)

运行结果:

技术分享

输入半径,计算圆的面积。

radius = float(input("输入圆的半径:"))
area = float(3.1415 * radius * radius)
print("面积为;%.2f"%area)

运行结果:

技术分享

画一组同切圆

import turtle
turtle.circle(10)
turtle.circle(20)
turtle.circle(30)
turtle.circle(40)
turtle.circle(50)
turtle.circle(60)
turtle.circle(70)
turtle.circle(80)
turtle.circle(90)

运行结果:

技术分享

画一个五角星

import turtle
turtle.forward(200)
turtle.right(144)
turtle.forward(200)
turtle.right(144)
turtle.forward(200)
turtle.right(144)
turtle.forward(200)
turtle.right(144)
turtle.forward(200)

运行结果:

技术分享

画一个全黄色的五角星

import turtle
turtle.bgcolor("red")
turtle.color("yellow")
turtle.fillcolor("yellow")
turtle.begin_fill()
turtle.forward(200)
turtle.right(144)
turtle.forward(200)
turtle.right(144)
turtle.forward(200)
turtle.right(144)
turtle.forward(200)
turtle.right(144)
turtle.forward(200)
turtle.end_fill()

运行结果:

技术分享

以上是关于python练习的主要内容,如果未能解决你的问题,请参考以下文章

Python3练习题系列(03)

spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段

csharp Epicor标准练习片段

golang 去练习片段

常用python日期日志获取内容循环的代码片段

python 有用的Python代码片段