zoukankan      html  css  js  c++  java
  • python练习

    1、输出Hello World!程序。

    运行结果:

    2、用交互式和文件式分别练习简单的交互程序。

    (1)交互式

    运行结果:

    (2)文件式

    运行结果:

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

    运行结果:

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

    运行程序:

    运行结果:

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

    运行结果:

    6、画一组同切圆。

    运行程序:

    运行结果:

    7、画一个五角星。

    运行程序:

    运行结果:

    8、画一个全黄色的五角星。

    运行程序:

     

    运行结果:

    9.国旗
    import turtle turtle.color('yellow') turtle.bgcolor('red') turtle.fillcolor('yellow') turtle.begin_fill() turtle.up() turtle.goto(-200,100) turtle.down() turtle.forward(150) turtle.right(144) turtle.forward(150) turtle.right(144) turtle.forward(150) turtle.right(144) turtle.forward(150) turtle.right(144) turtle.forward(150) turtle.end_fill() turtle.begin_fill() turtle.up() turtle.goto(-80,160) turtle.down() turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.end_fill() turtle.begin_fill() turtle.up() turtle.goto(-22,68) turtle.down() turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.end_fill() turtle.begin_fill() turtle.up() turtle.goto(-30,110) turtle.down() turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.end_fill() turtle.begin_fill() turtle.up() turtle.goto(-45,-10) turtle.down() turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.right(144) turtle.forward(50) turtle.end_fill()

  • 相关阅读:
    js变量类型
    js词法分析
    ORACLE 查找字段在哪些表里存在
    主外键约束的关闭和启用
    pl/sql developer 编码格式设置(转)
    WIN7 Net Configuration Assistant打不开
    Kettle 连接失败 Oracle 数据库报 ora-12505 的解决方法(转)
    正则表达式30分钟入门教程(转)
    设置程序的多个入口,进行动态的显示
    应用多入口配置
  • 原文地址:https://www.cnblogs.com/001688yzl/p/7495522.html
Copyright © 2011-2022 走看看