美文网首页
Python List count() Method

Python List count() Method

作者: 孟轲666 | 来源:发表于2018-08-22 10:07 被阅读5次

    Example

    Return the number of times the value "cherry" appears int the fruits list:

    fruits = ['apple', 'banana', 'cherry']
    
    x = fruits.count("cherry")
    

    相关文章

      网友评论

          本文标题:Python List count() Method

          本文链接:https://www.haomeiwen.com/subject/qkseiftx.html