鱼C论坛

 找回密码
 立即注册
楼主: 小甲鱼

[课后作业] 第002讲:用Python设计第一个游戏 | 课后测试题及答案

    [复制链接]
发表于 2020-10-5 21:30:56 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:

第 1 题的答案是:

第 2 题的答案是:

第 3 题的答案是:

第 4 题的答案是:

第 5 题的答案是:

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:



请将第 1 题的代码写在下方:
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-5 23:14:32 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:一个问答,一个可以编辑

第 1 题的答案是:print()

第 2 题的答案是:不一样

第 3 题的答案是:6

第 4 题的答案是:不知道

第 5 题的答案是:if guess == 8

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:
>>> 365*24*60*60
31536000


请将第 1 题的代码写在下方:
"""用python设计第一个游戏"""

temp = input("这次数学考试成绩")
guess = int(temp)

if guess ==100:
    print("好棒")
    print("你离女神又近了一步")
else:
    print("小子, 想要幸福,就得努力!")

print("游戏结束, 不玩啦")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-5 23:47:53 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:

第 1 题的答案是:

第 2 题的答案是:

第 3 题的答案是:

第 4 题的答案是:

第 5 题的答案是:

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:



请将第 1 题的代码写在下方:
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-6 00:18:18 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:
交互模式执行一条语句,编辑器模式可以编辑多条语句然后执行

第 1 题的答案是:
if    else   

第 2 题的答案是:
print()可以正常输出
Print()输出异常

第 3 题的答案是:

第 4 题的答案是:

第 5 题的答案是:
guess = 8 错误
>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:
x = 360 * 24 * 60
print(x)


请将第 1 题的代码写在下方:
temp = input('请输入这次数学考试的成绩:')
user = int(temp)

if user == 100:
    print('好棒,你离女神又进了一步^_^')
else:
    print('小子,想要幸福,就得努力!')

print('成绩输入完成')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-6 05:25:08 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:

第 1 题的答案是:

第 2 题的答案是:

第 3 题的答案是:

第 4 题的答案是:

第 5 题的答案是:

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:
365*24*60*60



请将第 1 题的代码写在下方:
temp = input ("这次数学考试成绩:")
guess = int (temp)

if guess == 100:
    print ("好棒,你离女神又近了一步^_^")
   
else:
     print ("小子,想要幸福,就得努力!")

print ("游戏结束,不玩啦^_^")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-6 09:28:56 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:
编辑模式是脚本,交互模式只能一行一行的执行代码
第 1 题的答案是:
int()函数
第 2 题的答案是:
不一样
第 3 题的答案是:

第 4 题的答案是:
自动补全
第 5 题的答案是:
用了一个等号,一个等号是赋值不是比较
>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:

365*24*3600

请将第 1 题的代码写在下方:print("————————我爱鱼C工作室————————")
temp = input("请输入这次数学考试的成绩")
guess = int(temp)
if guess == 100:
    print("好棒,你离女神又近了一步")
else :
    print("小子,想要幸福,就得努力!")
print("游戏结束,不玩啦!")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-6 10:26:13 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:

第 1 题的答案是:

第 2 题的答案是:

第 3 题的答案是:

第 4 题的答案是:

第 5 题的答案是:

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:



请将第 1 题的代码写在下方:
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-6 11:47:16 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:525600

第 1 题的答案是:

第 2 题的答案是:

第 3 题的答案是:

第 4 题的答案是:

第 5 题的答案是:

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:



请将第 1 题的代码写在下方:
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-6 12:39:11 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:

第 1 题的答案是:

第 2 题的答案是:

第 3 题的答案是:

第 4 题的答案是:

第 5 题的答案是:

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:



请将第 1 题的代码写在下方:
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-6 15:23:26 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:

第 1 题的答案是:

第 2 题的答案是:

第 3 题的答案是:

第 4 题的答案是:

第 5 题的答案是:

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:



请将第 1 题的代码写在下方:
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-6 15:25:31 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:

第 1 题的答案是:temp = input('Please input the math score of this test:')
score = int(temp)
if score == 100:
    print('Great! You are one step closer to your goddess!')
else:
    if score < 100:
        print('Boy! You have to work hard if you want be happy one day')
print('The game is over.')

第 2 题的答案是:

第 3 题的答案是:

第 4 题的答案是:

第 5 题的答案是:

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:



请将第 1 题的代码写在下方:
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-6 15:46:06 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:交互模式是一打开Python的界面,输入一个指令,敲一个回车,就可以立马出现结果。
编辑器模式就是交互模式里,File—new File 中新建的,然后输入一堆指令,就可以出现结果。


第 1 题的答案是:
Int()
第 2 题的答案是:
Input 是接收用户给Python的信息,而print是可以在完成指令后输出信息的。
第 3 题的答案是:
88
第 4 题的答案是:
不知道
第 5 题的答案是:
标点符号没有用英文状态下的
>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:

365*24*60*60

请将第 1 题的代码写在下方:
"""让用户输入这次数学考试的成绩"""

temp=input("让用户输入这次数学考试的成绩:")
guess=int(temp)

if guess == 100:
    print("好棒,你离女神又近了一步^_^!")
else:
    print("小子,想要幸福,就得努力!")

print("游戏结束,不玩啦^_^")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-6 16:08:23 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:

第 1 题的答案是:

第 2 题的答案是:

第 3 题的答案是:

第 4 题的答案是:

第 5 题的答案是:

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:
365*24*60*60


请将第 1 题的代码写在下方:
temp = input("这次考试的成绩是:")
guess = int(temp)

if guess ==100:
    print("amazing!")
    print("Keep going!")
else:
    print("Cheer up")

print("The End")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-6 17:17:27 | 显示全部楼层
本帖最后由 蝎子莱莱 于 2020-10-6 17:22 编辑

请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:面向对象不同

第 1 题的答案是:help dir

第 2 题的答案是:不一样

第 3 题的答案是:68个

第 4 题的答案是:找相似内置函数

第 5 题的答案是:第六行应该是两个等于号 一个的意思是赋值

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:

31536000


请将第 1 题的代码写在下方:
temp = input()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-6 18:05:39 | 显示全部楼层
本帖最后由 ljiarongc5 于 2020-10-6 18:41 编辑

请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:互交模式:无需print,直接输入函数名,组名就可打印。
                                编辑器模式:return 不可直接打印,必须由print来执行。

第 1 题的答案是:Python的BIT内置函数:dir(_builtins_),    help(input), help (int)  ,  bin ()
                                                                       
第 2 题的答案是:println():换行打印    ptint():不换行,连续打印

第 3 题的答案是:共152个函数。

第 4 题的答案是:自动补齐功能

第 5 题的答案是:原:if guass = 8:订正:if guass == 8:

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:



请将第 1 题的代码写在下方:
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-6 21:21:24 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:

第 1 题的答案是:int()

第 2 题的答案是:不一样

第 3 题的答案是:154

第 4 题的答案是:

第 5 题的答案是:

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:



请将第 1 题的代码写在下方:
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-7 02:45:00 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:交互模式你输入一段指令可以立即获得反馈,编辑器模式则不会

第 1 题的答案是:int

第 2 题的答案是:不一样

第 3 题的答案是:152

第 4 题的答案是:快捷输入代码

第 5 题的答案是:06行应是双等号用以比较两边值是否相等

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:
31536000


请将第 1 题的代码写在下方:temp = input("输入数学考试成绩:")
guess = int(temp)

if guess == 100:
    print("好棒,你离女神又近了一步?!")
else:
    print("小子,想要幸福,就得努力!")
   
print("游戏结束,不玩啦^_^")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-7 08:59:27 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:交互模式能立即给出运行结果,编辑器模式是编辑后保存运行

第 1 题的答案是:'ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning', 'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError', 'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False', 'FileExistsError', 'FileNotFoundError', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError', 'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'ModuleNotFoundError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError', 'RecursionError', 'ReferenceError', 'ResourceWarning', 'RuntimeError', 'RuntimeWarning', 'StopAsyncIteration', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'TimeoutError', 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'WindowsError', 'ZeroDivisionError', '__build_class__', '__debug__', '__doc__', '__import__', '__loader__', '__name__', '__package__', '__spec__', 'abs', 'all', 'any', 'ascii', 'bin', 'bool', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod', 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'exec', 'exit', 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'isinstance', 'issubclass', 'iter', 'len', 'license', 'list', 'locals', 'map', 'max', 'memoryview', 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', 'vars', 'zip'

第 2 题的答案是:不一样,print()打印输出结果,Print()则语法错误

第 3 题的答案是:152

第 4 题的答案是:补齐函数

第 5 题的答案是:if guess = 8:错误,应该是==

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:365*24*60*60



请将第 1 题的代码写在下方:
temp = input("这次数学考试成绩:")
grade = int(temp)

if grade == 100:
    print("好棒,你离女神又近了一步^_^")
else:
    print("小子,想要幸福,就得努力!")

print("游戏结束,不玩啦^_^")

                     
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-7 09:14:46 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:交互模式可以保存,编辑器模式直接运行

第 1 题的答案是:int()

第 2 题的答案是:不一样,Python中大小写是有差异的

第 3 题的答案是:输入dir(__builtins__),即可看到Python的内置函数

第 4 题的答案是:输入函数首字母可以查询函数

第 5 题的答案是:if guess == 8

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:
365*24*60*60


请将第 1 题的代码写在下方:
temp = input("这次数学考试的成绩:")
guess = int(temp)

if guess == 100:
    print("好棒,你离女神又近了一步^_^")
else:
    print("小子,想要幸福,就得努力!")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-7 10:30:06 | 显示全部楼层
请回复您的答案^_^

>>>>> 问答题 <<<<<

第 0 题的答案是:
1
第 1 题的答案是:

第 2 题的答案是:

第 3 题的答案是:

第 4 题的答案是:

第 5 题的答案是:

>>>>> 动动手 <<<<<

请将第 0 题的代码写在下方:



请将第 1 题的代码写在下方:
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-13 07:47

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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