Python代码
本文最后更新于660 天前,其中的信息可能已经过时,如有错误请发送邮件到2038899329@qq.com

输入5个整数计算最大与最小值的差,以及排序后中间位置的平方

c=[]
for i in range(5):
    a=int(input("请输入一个整数"))
    c.append(a)
d=max(c)-min(c)
b=sorted(c)
e=b[2]**2
print(d,e) 

半圆

import turtle as t
t.speed(0)
t.pensize(3)
t.pencolor("red")
t.circle(100,180,240)
t.circle(100,-180,-240)
t.circle(-100,180,240)
t.circle(-100,-180,-240)
t.done()

四个十字排列的园

import turtle as t
t.speed(0)
t.width(2)
for i in range(4):
    t.circle(100)
    t.right(90)
t.color("blue")
t.circle(2)
t.hideturtle()
t.done()

三角园

import turtle as t
t.color("black")
t.speed(0)
t.width(2)
t.fillcolor("red")
t.begin_fill()
for x in range(9000):
    t.forward(168)
    t.left(199)
    t.right(89)
t.end_fill()
t.done()

输入一个整数,输出2的个数

a=int(input("请输入一个整数"))
b=0
c=str(a)
for i in c:
    if i == "2":
        b+=1
print(b)

分数判断等级

i=int(input("请输入一个分数"))
if i >90:
    print("优秀")
elif i>=80:
    print("良好")
elif i>=60:
    print("及格")
else:
    print("不及格")

输入两个整数,如果第一个数比第二个小,则计算并输出两个整数的和,否则输出no

a=int(input("请输入第一个数"))
b=int(input("请输入第二个数"))
c=0
if a<b:
    for i in range(a,b+1):
        c=c+i
    print(c)
else:
    print("no")
一起加油哦~o(〃'▽'〃)o
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0协议
转载请注明文章地址及作者哦~
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇