(纯小白)为什么运行错误呢?

来源:3-7 Python的字符串format

Maybe0829

2021-08-16 19:21

print('第一种方式, 普通方式')

template = 'Life is short,{}'

a = 'you need Python'

result = template.format(a)

print(result)


print('第二种方式, 指定顺序')

template = 'life {0} short,{1}need {2}.'

result = template.format('is','you','Python')

print(result)



写回答 关注

2回答

  • 白白酱
    2021-08-20 10:30:40

    结合2-2 第一个Python程序的练习去看,应该是Python默认是以ASCII作为编码方式,如果在自己的Python源码中包含了中文需要在第一行加上:

    #coding=utf-8

    加上后就运行成功啦

  • qq_慕勒8022482
    2021-08-16 22:24:52

    result = template.format()这个只能每次接收一个字符串

Python3 入门教程(新版)

python3入门教程,让你快速入门并能编写简单的Python程序

154157 学习 · 1075 问题

查看课程

相似问题