當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python matplotlib check_in_list用法及代碼示例


本文簡要介紹 python 語言中 matplotlib._api.check_in_list 的用法。

用法

matplotlib._api.check_in_list(values, /, *, _print_supported_values=True, **kwargs)

對於 kwargs 中的每個 key, value 對,檢查 value 是否在 values 中;如果不是,則引發適當的 ValueError。

參數
values 可迭代的

要檢查的值序列。

_print_supported_values 布爾值,默認值:真

引發 ValueError 時是否打印 values

**kwargs dict

key, value 對作為關鍵字參數在 values 中查找。

拋出
ValueError

如果 kwargs 中的任何 valuevalues 中找不到。

例子

>>> _api.check_in_list(["foo", "bar"], arg=arg, other_arg=other_arg)

相關用法


注:本文由純淨天空篩選整理自skytowner.com大神的英文原創作品 matplotlib._api.check_in_list。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。