28 - 使用fstring 方法格式化字符串
【摘要】 1. 在Python语言中哪种格式化方法可以直接使用变量
fstringfstring 方式是指在字符串中直接使用Python 变量,这需要在字符串前面用f 标注
2. 请用代码描述如何使用fstring格式化字符串
# fstring
name = 'Bill'
age = 20
def getAge(): return 21
s = f'我是{name}...
1. 在Python语言中哪种格式化方法可以直接使用变量
- fstring
- fstring 方式是指在字符串中直接使用Python 变量,这需要在字符串前面用f 标注
2. 请用代码描述如何使用fstring格式化字符串
# fstring
name = 'Bill'
age = 20
def getAge(): return 21
s = f'我是{name}, 我今年{age}岁, 明年{getAge()}岁'
print(s)
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
我是Bill, 我今年20岁, 明年21岁
- 1
class Person: def __init__(self): self.name = 'Mike' self.age1 = 40 def getAge(self): return 41
person = Person()
s1 = f'我是{name}, 我今年{person.age1}岁, 明年{person.getAge()}岁'
print(s1)
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
我是Bill, 我今年40岁, 明年41岁
- 1
文章来源: ruochen.blog.csdn.net,作者:若尘,版权归原作者所有,如需转载,请联系作者。
原文链接:ruochen.blog.csdn.net/article/details/104358970
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)