有几种方法可以显示程序的输出。数据可以以人类可读的形式打印,或写入文件以备将来使用,甚至可以以其他一些特定形式出现。与简单地打印以空格分隔的值相比,用户通常希望更多地控制输出的格式。有几种格式化输出的方法。
使用字符串模运算符 (%) 格式化输出: % 运算符也可用于字符串格式化。它解释左参数很像 C 语言字符串中的 printf() 样式格式,以应用于右参数。在 Python 中,没有 printf() 函数,但是 Python 中包含了古老的 printf 的功能。为此,字符串类重载了模运算符 % 以执行字符串格式化。因此,它通常被称为字符串取模(有时甚至称为取模)运算符。
字符串模运算符 ( % ) 在 Python (3.x) 中仍然可用并被广泛使用。但是如今,旧的格式化风格已从语言中删除。
# Python program showing how to use # string modulo operator(%) to print # fancier output # print integer and float value print("Geeks : %2d, Portal : %5.2f" % (1, 05.333)) # print integer value print("Total students : %3d, Boys : %2d" % (240, 120)) # print octal value print("%7.3o" % (25)) # print exponential value print("%10.3E" % (356.08977))
输出 :
Geeks : 1, Portal : 5.33 Total students : 240, Boys : 120 031 3.561E+02
我们的示例中有两个:“%2d”和“%5.2f”。格式占位符的一般语法是:
%[flags][width][.precision]type
让我们看一下示例中的占位符。
使用 format 方法格式化输出: 在 Python(2.6) 中添加了 format() 方法。字符串的格式化方法需要更多的手工操作。用户使用 {} 标记变量将被替换的位置,并可以提供详细的格式化指令,但用户还需要提供要格式化的信息。此方法允许我们通过位置格式连接输出中的元素。例如 -
代码 1:
# Python program showing # use of format() method # using format() method print('I love {} for "{}!"'.format('Geeks', 'Geeks')) # using format() method and referring # a position of the object print('{0} and {1}'.format('Geeks', 'Portal')) print('{1} and {0}'.format('Geeks', 'Portal')) # the above formatting can also be done by using f-Strings # Although, this features work only with python 3.6 or above. print(f"I love {'Geeks'} for \"{'Geeks'}!\"") # using format() method and referring # a position of the object print(f"{'Geeks'} and {'Portal'}")
I love Geeks for "Geeks!" Geeks and Portal Portal and Geeks I love Geeks for "Geeks!" Geeks and Portal
其中的括号和字符(称为格式字段)将替换为传递给 format() 方法的对象。括号中的数字可用于指代传递给 format() 方法的对象的位置。
代码 2:
# Python program showing # a use of format() method # combining positional and keyword arguments print('Number one portal is {0}, {1}, and {other}.' .format('Geeks', 'For', other ='Geeks')) # using format() method with number print("Geeks :{0:2d}, Portal :{1:8.2f}". format(12, 00.546)) # Changing positional argument print("Second argument: {1:3d}, first one: {0:7.2f}". format(47.42, 11)) print("Geeks: {a:5d}, Portal: {p:8.2f}". format(a = 453, p = 59.058))
输出:
Number one portal is Geeks, For, and Geeks. Geeks :12, Portal : 0.55 Second argument: 11, first one: 47.42 Geeks: 453, Portal: 59.06
下图和示例用法描述了格式方法如何用于位置参数:
代码 3:
# Python program to # show format() is # used in dictionary tab = {'geeks': 4127, 'for': 4098, 'geek': 8637678} # using format() in dictionary print('Geeks: {0[geeks]:d}; For: {0[for]:d}; ' 'Geeks: {0[geek]:d}'.format(tab)) data = dict(fun ="GeeksForGeeks", adj ="Portal") # using format() in dictionary print("I love {fun} computer {adj}".format(**data))
Geeks: 4127; For: 4098; Geeks: 8637678 I love GeeksForGeeks computer Portal
使用 String 方法格式化输出: 此输出使用字符串切片和连接操作进行格式化。字符串类型有一些方法可以帮助以更奇特的方式格式化输出。一些有助于格式化输出的方法是str.ljust()、str.rjust()和str.centre()
# Python program to # format a output using # string() method cstr = "I love geeksforgeeks" # Printing the center aligned # string with fillchr print ("Center aligned string with fillchr: ") print (cstr.center(40, '#')) # Printing the left aligned # string with "-" padding print ("The left aligned string is : ") print (cstr.ljust(40, '-')) # Printing the right aligned string # with "-" padding print ("The right aligned string is : ") print (cstr.rjust(40, '-'))
Center aligned string with fillchr: ##########I love geeksforgeeks########## The left aligned string is : I love geeksforgeeks-------------------- The right aligned string is : --------------------I love geeksforgeeks
原文链接:codingdict.net