|
发表于 2023-10-3 11:44:00
|
显示全部楼层
请回复您的答案^_^
>>>>> 问答题 <<<<<
第 0 题的答案是:
交互模式便于及时看到结果,编辑器多用于储存
第 1 题的答案是:
int, if else,
第 2 题的答案是:
不一样,print is a built in function, while Print() is not.
第 3 题的答案是:
45
第 4 题的答案是:
Provide hints for builtin functions
第 5 题的答案是:
It should be :
Guess == 8
Single equal is to assign a value. == is using to compare.
>>>>> 动动手 <<<<<
请将第 0 题的代码写在下方:
365*24*60*60
请将第 1 题的代码写在下方:
temp = input("please enter your scores")
score = int(temp)
if score == 100:
print("You did a great job!")
else:
print("You need to work harder") |
|