Python教程

python-字符串格式化函数-format

本文主要是介绍python-字符串格式化函数-format,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
# 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的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!