for 循环:for 循环用于迭代序列(即列表、元组、字典、集合或字符串)。语法:对于序列中的变量示例:txt = '1234'for num in txt: print(num,end=' ')output:1 2 3 4如果条件:...