python-字符串格式化函数-format
程序员文章站
2022-07-14 17:49:15
...
# coding:utf-8
'''
字符串格式化函数format
1、string.format函数用来格式化字符串
2、使用format的字符串主体使用{} 大括号来替代格式符号
3、string.format(data,data,data)
'''
books = ['Falsk','python入门','Django']
info = 'hello {0},今天看起来气色{1},今天想看什么书呢,比如:{2}'.format('Tom','不错',books)
print(info)
'''
python3.6加入的新格式化方案 - f-strings
用法:
定义一个变量
字符串前加f符号
需要格式化的位置使用 {变量名}
ps:要提前定义好变量名
示例:
f'hello {name}'
'''
name = 'Tom'
info = f'hello {name}'
print(info
'''
字符串格式化,3种方式:
1、% 如:'hello %s,今天心情%s'%('Tom','不错')
2、string.format(data)
3、f'hello {name}' ,ps:name要提前定义好
'''
推荐阅读
-
Python中应该使用%还是format来格式化字符串
-
浅析python3字符串格式化format()函数的简单用法
-
php number_format() 函数通过千位分组来格式化数字的实现代码
-
集合的操作方法、字符串格式化以及函数基础(第四天)
-
python格式化字符串的三种方法(%,format,f-string)
-
python之字符串格式化(format)
-
Python之字符串格式化,"format"替代"%"
-
PHP中格式化数字,number_format()函数的用法
-
#Python萌新# 新的“格式化字符串”的方法:format()函数
-
Python中字符串格式化:%和format