假设您有一个公司名称的列表,如下所示:
company_names = ["Apple", "Microsoft", "Google", "Tesla", "Amazon", "Samsung", "Sony"]
要提取以"S"开头的公司名称,您可以使用以下Python代码:
s_companies = [company for company in company_names if company.startswith("S")]
print(s_companies)
输出结果:
['Samsung', 'Sony']
这里使用了列表推导(list comprehension)的方法,它是一个简洁的构建列表的方法。company.startswith("S")
用于检查字符串是否以"S"开头。如果是,则将其添加到s_companies
列表中。最后,打印出所有以"S"开头的公司名称。
领取专属 10元无门槛券
手把手带您无忧上云