python循环中输出
时间: 2023-09-07 11:16:18 浏览: 104
python 循环输出列表(示例)
在Python中,可以使用for循环或while循环来进行循环输出。下面是两个例子:
使用for循环输出九九乘法表:
```python
for i in range(1, 10):
for j in range(1, i + 1):
print(f"{j} * {i} = {j * i}\t", end='')
print()
```
这段代码会输出九九乘法表的结果。
使用while循环输出九九乘法表:
```python
i = 1
while i <= 9:
j = 1
while j <= i:
print(f"{j} * {i} = {j * i}\t", end='')
j += 1
i += 1
print()
```
这段代码也会输出九九乘法表的结果。
另外,如果你想要遍历字符串并统计某个特定字符出现的次数,可以使用for循环。下面是一个例子:
```python
str = "I love Guiyang and I love China."
count = 0
for i in str:
print(i, end='')
if i == "n":
count += 1
print()
print(count)
```
这段代码会遍历字符串并打印输出每个字符,同时统计出英文字母'n'的个数。
#### 引用[.reference_title]
- *1* *2* *3* [python循环语句](https://blog.csdn.net/m0_60431736/article/details/127358222)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文