课程
/后端开发
/Python
/Python3 入门教程(新版)
任务作业。
2021-05-28
源自:Python3 入门教程(新版) 3-6
正在回答
Whether 前面换行呢?
慕容7083075
a=r'''"To be, or not to be": that is the question.
Whether it's nobler in the mind to suffer.'''
print(a)
举报
python3入门教程,让你快速入门并能编写简单的Python程序
2 回答为什么这样会提示TypeError: list indices must be integers or slices, not list,求大佬解答!感谢
1 回答and or not
3 回答print('hello,', a or 'world')为什么不会输出hello world?
2 回答L = [75, 92, 59, 68, 99] for a in L: sum = 0 sum = sum + a print (sum / 5)
1 回答for name in names: score = scores[index] print('name = {}, score = {}'.format(name, score)) index = index + 1