|
发表于 2020-5-13 23:27:09
|
显示全部楼层
请回复您的答案^_^
>>>>> 问答题 <<<<<
问答题:版权属于:https://fishc.com.cn
R5fq.QB"'4#x+(j8NhSGcsbp%027;|
0. IDLE 的交互模式和编辑器模式有什么区别?uDKe8Utw
回答:IDLE交互模式是输入者与电脑的对话模式;而编辑器模式是将一个程序输入完毕之后再运行。
1. 在课堂上敲过的代码中,除了 print() 和 input(),你觉得还有哪一个是 Python 的 BIF 内置函数?
Help()和int()。Help()用于显示函数的功能;int()用于对输入的数值取整。
2. 请问 print() 和 Print() 的功能一样吗?
不一样。Print()是一个错误的指令。
3. 请统计一下 Python 一共有多少个 BIF 内置函数?
通过输入dir(__builtins__),查询到153个内置函数。如下:
'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'。
但是,当我输入dir("___builtins___")时,也发现有另外一些函数:
'__add__', '__class__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'capitalize', 'casefold', 'center', 'count', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'format_map', 'index', 'isalnum', 'isalpha', 'isascii', 'isdecimal', 'isdigit', 'isidentifier', 'islower', 'isnumeric', 'isprintable', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'maketrans', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill'。不知道这些是不是内置函数?请高手解释一下。
4. Tab 键除了用于缩进,你还发现它在 IDLE 中有什么特殊的功能吗?
在IDLE中,Tab键除了用于缩进之外,还有一个用途,即,在输入字母后键入Tab键,还会提供前面输入字母所有可能的命令,供输入者参考。
G3|{x6"Q1*^g':]$7C+O9E;emFMq,
5. 请问下面代码为什么不能正常执行?Powered by https://fishc.com.cn
1. """ 用Python设计第一个游戏 """
2.
3. temp = input("不妨猜一下小甲鱼现在心里想的是哪个数字:")
4. guess = int(temp)
5.
6. if guess = 8:
7. print("你是小甲鱼心里的蛔虫嘛?!")
8. print("哼,猜中了也没奖励!")
9. else:
10. print("猜错啦,小甲鱼现在心里想的是8!")
11.
12. print("游戏结束,不玩啦^_^")
复制代码
应将“if guess = 8”改为“if guess == 8”。因为’=’是赋值操作,’==’才表示等于。
1B8`JjL{3'?]iucA}eGSU$r#6!
动动手:版权属于:https://fishc.com.cn
;)<#Yi"Z5{r^bvf_X1za*+I
0. 请在 IDLE 的交互模式中,计算一年有多少秒?
>>> 365 * 24 *60 *60
31536000
Y+,jias*@(fv$]GwAh)u
Y+,jias*@(fv$]GwAh)u
1. 按下面要求修改课堂中的 game.py 代码。 ?K)E5f[
• 让用户输入这次数学考试的成绩。
• 如果分数是 100 分,显示:好棒,你离女神又近了一步^_^
• 如果分数不是 100 分,显示:小子,想要幸福,就得努力!
程序实现如下:版权属于:https://fishc.com.cn
vtOH"WVp~$jdJ@i?!=CT<B
答案:
# p2.1-homework
temp = input('请输入这次数学考试的成绩;')
得分 = int(temp)
if 得分 == 100:
print('好棒,你离女神又近了一步^_^')
else:
print('加油!你小子还需要努力哦!')
print('得分输入完毕,^_^')
在独立输入程序的过程中,几个体会:1、第一句中的#不能少,他表明这是一个标题或者是一个解释的内容;2、temp可以用“输入分数”、“输入值”等汉字或者英文替换‘;3、由于变量可以为汉字,所以,也可以将游戏中的guess改为汉字“得分”;4、在输入完“if 得分 == 100“之后,一定不要忘记冒号”:”,同样,else之后也不要忘记”:“。
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方: |
|