suran91 发表于 2022-1-24 13:12:40

python画爱心,结果显示该文件没有与之关联的程序来执行该操作




在IDLE Shell 里面写完以后进行保存以后,无法打开,并且显示“结果显示该文件没有与之关联的程序来执行该操作”求教如何处理#新人python入门1个月以内

代码如下:
Python 3.9.2 (tags/v3.9.2:1a79785, Feb 19 2021, 13:44:55) on win32Type "help", "copyright", "credits" or "license()" for more information.>>> import turtle>>> import time>>> #画心形圆弧>>> def hart_arc():        for i in range(200):                turtle.right(1)                def move_pen_position(x,y):                        turtle.hideturtle() #隐藏画笔                        turtle.up() #提笔                        turtle.goto(x,y) #移动画笔到指定起始坐标(窗口中心为0,0)                        turtle.down() #下笔                        turtle.showturtle() #显示画笔                        love = "\nXX比心"                        signature = "永远美丽漂亮"                        #初始化                        turtle.setup(width = 800,height = 500) #画布大小                        turtle.color('blue','pink') #画笔颜色                        turtle.pensize(3) #画笔粗细                        turtle.speed(1) #画笔速度                        # 初始化画笔起始坐标                        move_pen_position(x=0,y=-180) # 移动画笔位置                        turtle.left(140) # 向左旋转140度                        turtle.begin_fill() # 标记背景填充位置                        # 画心形直线( 左下方 )                        turtle.forward(224) # 向前移动画笔,长度为224                        # 画爱心圆弧                        hart_arc() # 左侧圆弧                        turtle.left(120) # 调整画笔角度                        hart_arc() # 右侧圆弧                        # 画心形直线( 右下方 )                        turtle.forward(224)                        time.sleep(0.8)                        turtle.end_fill() # 标记背景填充结束位置                        # 在心形中写上表白话语                        move_pen_position(0,0) # 表白语位置                        turtle.hideturtle() # 隐藏画笔                        turtle.color('#CD5C5C', 'pink') # 字体颜色                        time.sleep(0.5)                        # font:设定字体、尺寸(电脑下存在的字体都可设置) align:中心对齐                        turtle.write(love, font=('times new roman', 30, 'bold'), align="center")                        # 签写署名                        if signature != 'XX':                                turtle.color('red', 'pink')                                time.sleep(0.2)                                move_pen_position(180, -180)                                turtle.hideturtle() # 隐藏画笔                                turtle.write(signature, font=('Microsoft YaHei', 20), align="center")                                # 点击窗口关闭程序                                window = turtle.Screen()                                window.exitonclick()

翼是孤独 发表于 2022-1-24 13:23:23

新建个py文件,在里面写代码运行

Gacy 发表于 2022-1-24 13:35:17

new一个文件

suran91 发表于 2022-1-24 13:43:55

Gacy 发表于 2022-1-24 13:35
new一个文件

new了 还是一样的结果

冬雪雪冬 发表于 2022-1-24 14:41:54

suran91 发表于 2022-1-24 13:43
new了 还是一样的结果

不要在交互模式(>>>提示符下)保存文件
而是新建文件,输入程序,再保存。

大马强 发表于 2022-1-24 19:04:31

你这明显是在交互模式,交互模式不支持多行代码
要不就一行行敲
要不就ctrl+n 新建文件
emmm,你这代码不全吧,
https://static01.imgkr.com/temp/2b330d61d0964b5680b2637f499ee27f.jpg

suran91 发表于 2022-1-24 21:04:10

大马强 发表于 2022-1-24 19:04
你这明显是在交互模式,交互模式不支持多行代码
要不就一行行敲
要不就ctrl+n 新建文件


重新建了一个新的,找人DEBUG了一下

大马强 发表于 2022-1-24 21:06:27

suran91 发表于 2022-1-24 21:04
重新建了一个新的,找人DEBUG了一下

解决了?

suran91 发表于 2022-2-3 12:20:26

大马强 发表于 2022-1-24 21:06
解决了?

解决了,谢谢
页: [1]
查看完整版本: python画爱心,结果显示该文件没有与之关联的程序来执行该操作