运行出ABCDABCD是正确的吗?如何运行出ABCD?

来源:4-4 Python之for循环

慕慕6587238

2021-02-15 18:40

s = 'ABCD'
for ch in s:
    print(ch)


写回答 关注

1回答

  • qq_慕粉0092501
    2021-02-16 16:40:11

    直接print(s)就可以运行出ABCD

Python3 入门教程(新版)

python3入门教程,让你快速入门并能编写简单的Python程序

154174 学习 · 1075 问题

查看课程

相似问题