提交 06630256 编写于 作者: F feilong

改进1题

上级 3dfb28e6
......@@ -2,6 +2,8 @@
输出 "Hello,World!" 字符串,请找出以下选项中<span style="color:red">错误</style>的选项。
小知识: Python的创始人为 Guido van Rossum,当时他在阿姆斯特丹的荷兰数学和计算机科学研究学会工作。1989年的圣诞节期间,Guido van Rossum为了在打发时间,决心开发一个新的脚本解释编程,作为ABC语言的一种继承,替代使用Unix shell和C语言进行系统管理,担负同Amoeba操作系统(英语:Amoeba (operating system))的交互和异常处理。之所以选中Python作为编程的名字,是因为他是BBC电视剧——《蒙提·派森的飞行马戏团》(Monty Python's Flying Circus)的爱好者。
## template
```python
......@@ -45,3 +47,19 @@ if __name__ == '__main__':
str2 = "World!"
print(str1+str2)
```
### 打印数组
```python
if __name__ == '__main__':
str_list = ["Hello,","World!"]
print(''.join(str_list))
```
### 数组元素相加
```python
if __name__ == '__main__':
str_list = ["Hello,","World!"]
print(str_list[0]+str_list[1])
```
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册