dongjak
发表于 2020-12-8 23:17:25
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
JIXUANCHENG
发表于 2020-12-8 23:35:18
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
IDLE像是个交互终端,编辑器模式字面理解就是个编辑器233
第 1 题的答案是:
int(temp)
第 2 题的答案是:
不一样
第 3 题的答案是:
>>> len(dir(__builtins__)
153
第 4 题的答案是:
限制代码格式
第 5 题的答案是:
if guess == 8
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
>>> 3600 * 24 * 365
31536000
请将第 1 题的代码写在下方:
#!/usr/bin/python3.7
"""用Python设计第二个游戏"""
temp = input("请输入这次数学考试的成绩:")
guess = int(temp)
if guess == 100:
print("好棒,你离女神又近了一步^_^")
else:
print("小子,想要幸福,就得努力!")
print("游戏结束,不玩啦^_^")
NatsuZED
发表于 2020-12-9 01:05:22
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
365*24*60*60
请将第 1 题的代码写在下方:
temp = input ("这次数学考试成绩: ")
guess = int (temp)
if guess == 100:
print ("好棒,你离女神又近了一步^_^")
else:
print ("小子,想要幸福,就得努力!")
print ("游戏结束,不玩啦^_^")
yzbmm
发表于 2020-12-9 15:12:45
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
woyaokandaan
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
Kulrox
发表于 2020-12-9 17:58:15
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
60*60*24*365
请将第 1 题的代码写在下方:
WQ海阔天空
发表于 2020-12-9 20:52:43
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
交互模式,你输入一个指令,他会立即给你一个反馈,而编辑器模式需要运行,才会显示结果。
第 1 题的答案是:
int
第 2 题的答案是:
不一样,函数使用小写字母。
第 3 题的答案是:
不会让我一个一个去数吧
第 4 题的答案是:
额,还没发现。
第 5 题的答案是:
如果guess=8,这里少录入一个=。
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
60*60*24*365
请将第 1 题的代码写在下方:
shuxue = input("帅哥,这次数学考了多少分啊?")
guess = int(shuxue)
if guess == 100:
print("好棒,你离女神又近了一步^_^")
else:
print("小子,想要幸福,就得努力!")
小兴同学
发表于 2020-12-9 21:47:38
请回复您的答案^_^
ilovefishc.com
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
黄炸山
发表于 2020-12-9 22:10:29
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
haiyang911
发表于 2020-12-9 22:21:44
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
小兴同学
发表于 2020-12-9 23:00:27
请回复您的答案^_^
>>>>> 问答题 <<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
>>> list1 = ['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', 'ZeroDivisionError', '__build_class__', '__debug__', '__doc__', '__import__', '__loader__', '__name__', '__package__', '__spec__', 'abs', 'all', 'any', 'ascii', 'bin', 'bool', 'breakpoint', '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']
>>> len(list1)
152
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
爱学习的Bob
发表于 2020-12-9 23:06:17
本帖最后由 爱学习的Bob 于 2020-12-9 23:21 编辑
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:少个=
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
>>> 365*24*60*60
31536000
请将第 1 题的代码写在下方:temp = input("这次数学考试成绩:")
guess = int(temp)
if guess == 100:
print("好棒,你离女神又近了一步^-^")
else:
print("小子,你想要幸福,就得努力!")
print("游戏结束,不玩啦^-^")
lx520tsl
发表于 2020-12-10 00:09:42
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
wim233
发表于 2020-12-10 00:49:43
本帖最后由 wim233 于 2020-12-10 00:53 编辑
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:交互模式:直接反馈需要打印、输入或计算的结果;编辑器模式:编辑好程序后保存并通过RUN Module运行程序,再和程序进行交互。
第 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', 'breakpoint', '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 题的答案是:不一样。
第 3 题的答案是:153个。
第 4 题的答案是:自动填充功能。
第 5 题的答案是:if guess == 8:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
365 * 24 * 60 * 60
请将第 1 题的代码写在下方:
temp = input("你这次考试的数学成绩是:")
score = int(temp)
if score == 100:
print("好棒,你离女神又近了一步^_^")
else:
print("小子,想要幸福,就得努力")
print("游戏结束,不玩啦^_^")
a4877489
发表于 2020-12-10 08:37:27
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
songkai0822
发表于 2020-12-10 09:46:32
检查我写的答案
Thea十九
发表于 2020-12-10 10:09:22
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:1.文本编辑模式,return不可直接打印,必须由print来执行。
2.交互模式,最重要的是无需print,直接输入函数名、数组名就可打印;再一个,交互模式不可用于函数的交互,只能进行像hello world的打印,以及数组的打印等等。
第 1 题的答案是:int()
第 2 题的答案是:不一样吧
第 3 题的答案是:69个
第 4 题的答案是:还没发现
第 5 题的答案是:=有问题
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
>>> print(365*24*60*60)
31536000
请将第 1 题的代码写在下方print('数学考试成绩')
temp = input("请输入这次数学考试成绩:")
guess = int(temp)
if guess == 100:
print("好棒,你离女神又近一步了^_^")
else:
print("小子,想要幸福,就得努力!")
qq16542
发表于 2020-12-10 10:36:49
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:1
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
ZackYuan
发表于 2020-12-10 11:36:47
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
Roleless_Emma
发表于 2020-12-10 15:43:41
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
交互模式中,不需要print就可以打印,不需要点run而是直接回车两次就可以运行。
而编辑器模式中,需要点击run→run module之后,才会运行代码。
第 1 题的答案是:if else
第 2 题的答案是:print()和Print()不一样。Print不是内置函数,会报错。
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:第6行中,if guess = 8:应该改成 if guess == 8:
因为在Python中,一个=表示赋值,两个=才表示是否相等。
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
Roleless_Emma
发表于 2020-12-10 15:50:41
刚才没看到动动手,现在补上
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
交互模式中,不需要print就可以打印,不需要点run而是直接回车两次就可以运行。
而编辑器模式中,需要点击run→run module之后,才会运行代码。
第 1 题的答案是:if else
第 2 题的答案是:print()和Print()不一样。Print不是内置函数,会报错。
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:第6行中,if guess = 8:应该改成 if guess == 8:
因为在Python中,一个=表示赋值,两个=才表示是否相等。
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:60*60*24*365
请将第 1 题的代码写在下方:temp = input("请您输入本次数学考试的成绩:")
score = float(temp)
if score == 100:
print('好棒,你离权志龙和南柱赫又近了一步!')
else:
print('这位少女,想要幸福,还需努力!')
print('滚吧,游戏结束了')