python
遍历输出列表中最长的单词
具体代码:
推荐教程:
python教程
Python 3.14.3
微软官方的 Python 扩展,是 VS Code 安装量最高的扩展(209M+)。集成 IntelliSense(通过 Pylance)、调试(通过 Python Debugger)、代码检查、格式化、重构和单元测试等功能。支持 Jupyter Notebook、虚拟环境管理和多 Python 版本切换。
下载
word_len_list = [len(word) for word in list]
max_word_len = max(word_len_list)
for word in list:
if len(word) == max_word_len:
#print(word)
list = []