鱼C论坛

 找回密码
 立即注册
查看: 1578|回复: 3

[已解决]零基础入门phthon 002课,为什么程序运行不了?

[复制链接]
发表于 2020-3-12 16:14:53 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 一个账号 于 2020-3-12 16:41 编辑
print('------------我爱鱼C工作室---------------')
temp = input("不妨猜一下小甲鱼现在心里想的是哪个数字:")
guess = int(temp)
if guess == 8:
    print("我草,你是小甲鱼心里的蛔虫吗!?")
    print("哼,猜中了也没有奖励!")
else:
    print("猜错啦,小甲鱼现在心里想的是8!")
print("游戏结束,不玩啦^-^")


运行以后显示
IDLE's subprocess didn't make connection.
See the 'Startup failure'section of the IDLE doc,online at
https://docs.python.org/3/library/idle.html#startup-failure
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-12 16:41:58 | 显示全部楼层
错误原因分析:

同层目录下存在和Python库文件相同名字的.py文件,导致子进程无法创建的问题。

解决方法:

排查目录下的.py文件,找到和库文件名字相同的.py文件,然后重命名之。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-12 16:45:44 | 显示全部楼层    本楼为最佳答案   
参考:https://www.cnblogs.com/skyhiter/p/3381385.html
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-13 08:39:26 | 显示全部楼层
import random

counts = 4
answer = random.randint(1,10)

while counts > 0:
    temp = input("猜猜我心里想的是哪个数字?(只有四次机会哦)")
    guess = int(temp)

    if guess == answer:
        print("竟然猜对了…………")
        print("既然猜对了,那么给你个奖励:对着镜子石头剪刀布,没赢不许睡觉")
        break

    else:
        if guess < answer:
            print("小了哦~")
        else:
            print("大了哦~ ")
    counts = counts-1
temp = input("按0进入下一轮")
guess = int(temp)


import random

counts = 4
answer= random.randint(1, 10)

while counts > 0:
    temp = input("猜猜我心里想的是哪个数字?(只有4次机会哦)")
    guess = int(temp)

    if guess == answer:
        print(" 怎……么……又……猜……对……了……")
        print("猜对奖励:背诵弟子规10000遍")
        break

    else:
        if guess < answer:
            print("小啦~")
        else:
            print("大啦~")
    counts = counts - 1
temp = input("按0进入下一轮")
guess = int(temp)

import random

counts = 4
answer= random.randint(1, 10)

while counts > 0:
    temp = input("猜猜我心里想的是哪个数字?(只有4次机会哦)")
    guess = int(temp)

    if guess == answer:
        print(" 这,这,竟然然猜对了!")
        print("猜对奖励:给自己来一拳")
        break

    else:
        if guess < answer:
            print("小啦~")
        else:
            print("大啦~")
    counts = counts - 1
temp = input("按0进入下一轮")
guess = int(temp)


import random

counts = 4
answer= random.randint(1, 10)

while counts > 0:
    temp = input("猜猜我心里想的是哪个数字?(只有4次机会哦)")
    guess = int(temp)

    if guess == answer:
        print(" 啥?!你居然又双叒叕猜对了!")
        print("猜对奖励:给自己一个最爱吃的耳光")
        break

    else:
        if guess < answer:
            print("小啦~")
        else:
            print("大啦~")
    counts = counts - 1
temp = input("按0进入下一轮")
guess = int(temp)



import random

counts = 4
answer= random.randint(1, 10)


while counts > 0:
    temp = input("再猜猜我心里想的是哪个数字?(只有4次机会哦)")
    guess = int(temp)

    if guess == answer:
        print(" 哼!居然又猜对了!")
        print("哼,不玩了,掰掰")
        break

    else:
        if guess < answer:
            print("小啦~")
        else:
            print("大啦~")
    counts = counts - 1


temp = input("按7退出")
guess = int(temp)

if guess == 7:
    print("掰掰")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-24 18:28

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表