|
发表于 2024-9-15 19:52:55
|
显示全部楼层
请回复您的答案^_^
-------- 问答题 --------
0.IDLE 的交互模式和编辑器模式有什么区别?
交互模式是:写一个代码,反馈一下;
编辑器模式是:写完了全部代码再运行程序进行反馈。
1.在课堂上敲过的代码中,除了 print() 和 input(),你觉得还有哪一个是 Python 的 BIF 内置函数?
Int()
2.请问 print() 和 Print() 的功能一样吗?
一样。因为为了避免字母l跟数字1雷同,一般会用L代替l,说明大小写一样。
3.请统计一下 Python 一共有多少个 BIF 内置函数?
158
print(len(['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BaseExceptionGroup', 'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning', 'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError', 'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EncodingWarning', 'EnvironmentError', 'Exception', 'ExceptionGroup', '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', 'aiter', 'all', 'anext', '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']))
4.Tab 键除了用于缩进,你还发现它在 IDLE 中有什么特殊的功能吗?
没有发现,听说是可以检查错误,但是按了没有反应。
5. 请问下面代码为什么不能正常执行?
少了一个等号??
-------- 动动手 --------
0.请在 IDLE 的交互模式中,计算一年有多少秒?
365*24*60*60
31536000
1. 按下面要求修改课堂中的 game.py 代码。
让用户输入这次数学考试的成绩。
如果分数是 100 分,显示:好棒,你离女神又近了一步^_^
如果分数不是 100 分,显示:小子,想要幸福,就得努力!
temp=input("请输入这次的数学成绩")
guess=int(temp)
if guess ==100:
print("好棒,你离女神又近了一步^_^")
else:
print("小子,想要幸福,就得努力!")
|
|