python统计正数和负数的个数
时间: 2023-06-10 09:08:18 浏览: 2870
统计你输入的正负数的个数
假设有一个列表 `nums`,其中包含正数和负数,那么可以通过以下代码统计正数和负数的个数:
```python
nums = [1, -2, 3, -4, 5, -6, 7, -8, 9]
positive_count = 0
negative_count = 0
for num in nums:
if num > 0:
positive_count += 1
elif num < 0:
negative_count += 1
print("正数个数为:", positive_count)
print("负数个数为:", negative_count)
```
输出结果为:
```
正数个数为: 5
负数个数为: 4
```
阅读全文