Python中如何使用print()函数进行格式化输出

Python中的print()函数是一个非常强大的函数,它可以用来进行格式化输出。它可以根据用户的需要输出任何格式的数据。

要了解print()函数的基本使用方法,即输入要打印的内容,在括号中添加参数,就可以实现格式化输出。

比如,要输出一个字符串,可以使用print()函数:

print("hello world")

输出结果:

hello world

如果要在字符串中添加变量,可以使用格式化输出:

name = "Tom"
print("My name is %s" % name)

输出结果:

My name is Tom

print()函数还可以用来格式化输出数字,比如:

num = 10
print("My number is %d" % num)

输出结果:

My number is 10

如果要输出浮点数,可以使用:

num = 3.14
print("My number is %f" % num)

输出结果:

My number is 3.14

print()函数还可以用来格式化输出字典,比如:

mydict = {'name':'Tom', 'age':20}
print("My name is %(name)s and my age is %(age)d" % mydict)

输出结果:

My name is Tom and my age is 20

print()函数还可以用来格式化输出列表,比如:

mylist = [1,2,3]
print("My list is %s" % mylist)

输出结果:

My list is [1, 2, 3]

print()函数还可以用来格式化输出元组,比如:

mytuple = (1,2,3)
print("My tuple is %s" % mytuple)

输出结果:

My tuple is (1, 2, 3)

Python中的print()函数可以用来进行格式化输出,可以用来输出字符串、数字、字典、列表和元组等数据类型。只要在括号中添加参数,就可以根据用户的需要输出任何格式的数据。

本文链接:http://task.lmcjl.com/news/8935.html

展开阅读全文