184418918
发表于 2019-12-25 16:15:36
请回复您的答案^_^
>>>>> 问答题 <<<<<
看答案
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
干炸小酥鱼
发表于 2019-12-25 16:29:14
>>>>> 问答题 <<<<<
第 0 题的答案是:IDLE可以直接输出结果,编辑器要run才可以看到运行结果。
第 1 题的答案是:import()dir()
第 2 题的答案是:不一样
第 3 题的答案是:153个(用dir找出来一个一个数的....)
第 4 题的答案是:还没发现有其他功能.....
第 5 题的答案是:第6行应该是 if guess == 8
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
print(60*60*24*365)
31536000
请将第 1 题的代码写在下方:
temp = input("这次数学考试成绩:")
mark = int(temp)
if mark == 100:
print("好棒,你离女神又近了一步^_^")
else:
print("小子,想要幸福,就得努力!")
print("游戏结束,不玩啦^_^")
Archilyx
发表于 2019-12-25 22:29:28
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:交互模式直接运行程序,编辑器模式需要保存后运行
第 1 题的答案是:int()
第 2 题的答案是:一样
第 3 题的答案是:164
第 4 题的答案是:可以链接文件夹中的内容
第 5 题的答案是:guess后只有一个“=”
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
365*24*60*60
请将第 1 题的代码写在下方:
""" 数学考试成绩 """
temp = input("请输入这次数学考试成绩")
grade = int(temp)
if grade == 100:
print("好棒,你离女神又近了一步")
else:
print("小子,想要幸福,就得努力!")
18370998456
发表于 2019-12-25 23:19:11
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:命令行模式是直接在命令行窗口中运行python的py文件,需要先用文本编辑器编写代码,再通过命令行模式运行。交互模式是执行一行就返回一行代码的结果。
第 1 题的答案是:int()
第 2 题的答案是:不一样,Print()语法错误
第 3 题的答案是:68
第 4 题的答案是:决定代码运行的前后顺序
第 5 题的答案是:要用两个等于号
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
365*24*60*60=
31536000
请将第 1 题的代码写在下方:
temp = input("同学,这次数学考试考了多少分:")
guess = int (temp)
if guess == 100:
print("好棒,你离女神又近了一步^_^!")
else:
print("小子,想要幸福,就得努力!")
ZSDD
发表于 2019-12-25 23:38:09
temp = input("这次数学考试成绩:")
guess = int(temp)
if guess < 60:
print("小子,想要幸福就得努力!")
else:
print("好棒!")
print("不玩了,游戏结束!")请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
xxmdqicep
发表于 2019-12-26 10:46:52
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
kkk_winter
发表于 2019-12-26 11:03:41
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
绕指温柔
发表于 2019-12-26 11:39:02
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
交互模式:给指令,直接给反馈
编辑器模式:程序保存后,在交互界面显示输出
第 1 题的答案是:
int dir
第 2 题的答案是:
不一样
没有 Print()这个函数
NameError: name 'Print' is not defined
第 3 题的答案是:
3.8.1版本
len(dir(__builtins__))
得到 154
第 4 题的答案是:
利用tab键进行代码提示(有待继续深入学习)
https://blog.csdn.net/qq_39363022/article/details/87817176
第 5 题的答案是:
SyntaxError: multiple statements found while compiling a single statement
直接 机翻,编译单个语句时发现多个语句。
无法理解,所以一直以为是符号有问题,改过之后还是这个问题。
将程序在编辑器模式中运行,无错误。
交互模式中只能进行单语句计算。(补充第0个问题)
后续学习中需注意。
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
365*24*60*60
请将第 1 题的代码写在下方:
""" 用Python设计第一个游戏 """
temp = input("请输入这个数学考试的成绩:")
guess = int(temp)
if guess == 100:
print("好棒,你离女神又近了一步^_^")
else:
print("小子,想要幸福,就得努力!")
print("游戏结束,不玩啦^_^")
Bal
发表于 2019-12-26 14:04:32
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:IDLE的交互模式按回车键就可直接反馈指令,也可以计算,无法修改程序;编辑器模式可以保存、修改缩写程序,需要运行(或F5)。
第 1 题的答案是:int()
第 2 题的答案是:不一样,print()才可运行,Print()会报错
第 3 题的答案是:154
第 4 题的答案是:输入函数名过程中,若函数名未完成按Tab,会提示已有字母开头的函数名。在文本中按Tab,会出现相关的文件。
第 5 题的答案是:If语句的判断错误,应该将“=”改为“==”
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
31536000
请将第 1 题的代码写在下方:
temp = input("Please input your math score: ")
score = int(temp)
if score == 100:
print("Well done! You are closer to your dream lover!^_^")
else:
print("Boy, you need to do more for your own happiness!")
353510788
发表于 2019-12-26 14:35:00
1请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
zerpwang
发表于 2019-12-26 16:29:51
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:交互模式输入代码直接反馈结果,编辑器的代码可以保存 需要手动激活来运行
第 1 题的答案是:int()
第 2 题的答案是:no
第 3 题的答案是:69
第 4 题的答案是:no idea
第 5 题的答案是:should be "==" after guess
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
>>> d=365
>>> h=24
>>> s=3600
>>> s*h*d
请将第 1 题的代码写在下方:
temp = input("Tell me the score of your last exam:")
guess = int(temp)
if guess == 100:
print("Good job, your are one step closer to success")
else:
print("Well, you need to work harder~")
print("Game Over")
安寐97
发表于 2019-12-26 16:47:53
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:交互模式就像一个已经做好的简单玩具,直接可以使用,但可玩性并不太高;编辑器模式就像是一个做玩具的工作台,有些东西,还需要自己动手做出自己想要的东西
第 1 题的答案是:int
第 2 题的答案是:不一样,print()是函数,而Print()是字符串
第 3 题的答案是:68个
dir(__builtins__)
['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']
第 4 题的答案是:可以快捷使用内置函数
第 5 题的答案是:if guess==8:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
print(60*60*24*365)
31536000
请将第 1 题的代码写在下方:
temp=input("这次数学考试成绩:")
guess=int(temp)
if guess==100:
print("好棒,你离女神又近了一步^_^")
else:
print ("小子,想要幸福,就得努力!")
print("不早了,快去写作业")
id1999
发表于 2019-12-26 19:19:10
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
编辑器模式可以多行输入
第 1 题的答案是:
int()
第 2 题的答案是:
不一样区分大小写
第 3 题的答案是:
153
第 4 题的答案是:
补全BIF函数
第 5 题的答案是:
第六行if guess ==
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
365*12*30*24*60*60
请将第 1 题的代码写在下方:
""" 用Python设计第一个游戏 """
temp = input("输入数学考试成绩:")
guess = int(temp)
if guess == 100:
print("好棒,你离女神又近了一步^_^")
else:
print("小子,想要幸福,就得努力!!")
print("游戏结束,不玩啦^_^")
xcf1992
发表于 2019-12-26 19:22:29
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:交互模式只能写一行代码,回车即编译;编辑器模式可以结构化,需要统一编译;
第 1 题的答案是:int()
第 2 题的答案不一样;P是文件;
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:==是逻辑运算符;=是赋值;
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
365*24*3600
请将第 1 题的代码写在下方:
小白100000000
发表于 2019-12-26 23:51:32
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
nanjijiang
发表于 2019-12-27 10:49:05
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:365*24*60*60
第 1 题的答案是:已经操作
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
qimiumiu
发表于 2019-12-27 10:54:27
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:15768000
第 1 题的答案是:
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
18745910107
发表于 2019-12-27 15:29:18
本帖最后由 18745910107 于 2019-12-27 15:53 编辑
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
IDLE交互模式可以随时输出结果,编辑器模式可以全部输入完程序后一起输出
第 1 题的答案是:
if else
int()
第 2 题的答案是:
不一样,python区分大小写
第 3 题的答案是:
154
68
第 4 题的答案是:
对齐
Tab自动填充,提示你将输入的内容,一个Tab相当于4分空格
第 5 题的答案是:
guess==8
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
seconds=365*24*3600
print(seconds)
交互模式
365*24*60*60
请将第 1 题的代码写在下方:
print("请输入这次数学考试成绩:")
if score==100:
print("好棒,你离女生又近了一步^_^")
else:
print("小子,想要幸福,就得努力!")
"""第一个程序作业"""
temp=input("本次考试的成绩是:")
guess=int(temp)
if guess==100:
print("好棒,你离女生又近了一步^_^")
else:
print("小子,想要幸福,就得努力!")
print("游戏结束")
1210751093
发表于 2019-12-27 15:31:05
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
第 1 题的答案是:6666666
第 2 题的答案是:
第 3 题的答案是:
第 4 题的答案是:
第 5 题的答案是:
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
请将第 1 题的代码写在下方:
hyyclark
发表于 2019-12-27 15:51:42
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
交互模式敲一行运行一行,编辑器模式可以先编辑完再运行
第 1 题的答案是:
int()
第 2 题的答案是:
功能不一样,函数名区分大小写
第 3 题的答案是:
154个
第 4 题的答案是:
不知道
第 5 题的答案是:
==8
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
365*24*60
请将第 1 题的代码写在下方:
fenshu = input("请输入数学考试成绩:")
if int(fenshu) == 100:
print("好棒,你离女神又进了一步!")
else:
print("小子,想要幸福,就得努力!")
print("游戏结束")