美文网首页
Python 8 Programming Tutorial -

Python 8 Programming Tutorial -

作者: 豆表示低调 | 来源:发表于2016-08-29 16:53 被阅读0次
foods = ['bacon', 'tuna', 'ham', 'snausages', 'beef']

for f in foods:
    print(f)
    print(len(f))

for f in foods[:2]:
    print(f)
    print(len(f))

相关文章

网友评论

      本文标题:Python 8 Programming Tutorial -

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