正文Python自学:第三章 使用列表中的各个值IP云V管理员/2022-08-16/6 阅读 08/16提示:扫一扫查出行【扫一扫了解最新限行尾号】复制提示 bicycles = ['trek','cannondale','redline','specialized']message = "My first bicycle was a " + bicycles[0].title() + "."print(message)输出为:My first bicycle was a Trek.