'int' object has no attribute 'min'
时间: 2023-09-14 14:04:50 浏览: 198
This error message is typically encountered when trying to use the `min()` function on an integer object. The `min()` function is used to find the minimum value in a sequence or iterable. However, since integers are not iterable, the `min()` function cannot be used directly on them.
Here's an example of code that might result in this error:
```
x = 5
minimum = x.min()
```
To fix this error, make sure that you are using the `min()` function on an iterable object, such as a list or tuple. Alternatively, you could simply compare two integers using the less than operator (`<`) to find the minimum value.
Here's an example of using the `min()` function correctly:
```
my_list = [3, 7, 1, 5, 9]
minimum = min(my_list)
print(minimum) # Output: 1
```
And here's an example of finding the minimum value using the less than operator:
```
x = 5
y = 3
minimum = x if x < y else y
print(minimum) # Output: 3
```
阅读全文
相关推荐
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![rar](https://img-home.csdnimg.cn/images/20241231044955.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)