zoukankan      html  css  js  c++  java
  • Python输入输出练习

    1.hello world

    print('hello world')

    2.交互式

    name=input('name=:')
    print('我的名字是:{}'.format(name))

    3.两者之和

    print('两者之和为:%.0f'%float(float(input('输入第一个数字:'))+float(input('输入第二个数字:'))))

    4.三角形面积

    a=float(input('a='))
    b=float(input('b='))
    c=float(input('c='))
    p=float((float(a+b+c))/2)
    print('三角形abc的面积为:%.0f'%float((p*(p-a)*(p-b)*(p-c))**0.5))

    5圆的面积

    r=float(input('半径为:'))
    print('半径为{}的面积为:%.2f'.format(r) %float(3.1314 * r * r))

    6同切圆

    import turtle
    turtle.circle(5)
    turtle.circle(10)
    turtle.circle(15)
    turtle.circle(20)

    7.五角星

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

    8填充颜色的五角星

    import turtle
    turtle.bgcolor('red')
    turtle.color('yellow')
    turtle.fillcolor('yellow')
    
    turtle.begin_fill()
    
    turtle.forward(100)
    turtle.right(144)
    turtle.forward(100)
    turtle.right(144)
    turtle.forward(100)
    turtle.right(144)
    turtle.forward(100)
    turtle.right(144)
    turtle.forward(100)
    
    turtle.end_fill()

    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()

  • 相关阅读:
    Azure PowerShell (2) 修改Azure订阅名称
    Windows Azure Platform Introduction (11) 了解Org ID、Windows Azure订阅、账户
    Azure PowerShell (3) 上传证书
    Azure PowerShell (1) PowerShell入门
    Windows Azure Service Bus (2) 队列(Queue)入门
    Windows Azure Service Bus (1) 基础
    Windows Azure Cloud Service (10) Role的生命周期
    Windows Azure Cloud Service (36) 在Azure Cloud Service配置SSL证书
    Android studio 使用心得(一)—android studio快速掌握快捷键
    android 签名、混淆打包
  • 原文地址:https://www.cnblogs.com/husiqi/p/7491880.html
Copyright © 2011-2022 走看看