阅读量:0
在Python中,可以通过嵌套使用format
函数来实现复杂的格式化输出。以下是一些嵌套使用format
函数的技巧:
- 嵌套使用
format
函数来格式化多个变量:
name = 'Alice' age = 30 address = '123 Main St' output = 'Name: {0}, Age: {1}, Address: {2}'.format(name, age, address) print(output)
- 嵌套使用
format
函数来格式化字典中的值:
person = {'name': 'Bob', 'age': 25, 'address': '456 Elm St'} output = 'Name: {0[name]}, Age: {0[age]}, Address: {0[address]}'.format(person) print(output)
- 嵌套使用
format
函数来格式化列表中的值:
items = ['apple', 'banana', 'cherry'] output = 'First item: {0[0]}, Second item: {0[1]}, Third item: {0[2]}'.format(items) print(output)
- 嵌套使用
format
函数来格式化嵌套的数据结构:
person = {'name': 'Alice', 'age': 30, 'address': {'street': '123 Main St', 'city': 'New York'}} output = 'Name: {0[name]}, Age: {0[age]}, Address: {0[address][street]}, City: {0[address][city]}'.format(person) print(output)
通过嵌套使用format
函数,可以轻松地实现复杂的格式化输出需求。