我正在参加一个Python的暑期课程,偶然发现了这个Python代码:
num1 = input( ) # input will be 10
num2 = input( ) # input will be 20
num3 = num1 + num2
print (f'The sum is {num3:<50}')
最后一段在花括号{num 3:<50}?<50是什么意思??
任何帮助赞赏,谢谢!
我正在参加一个Python的暑期课程,偶然发现了这个Python代码:
num1 = input( ) # input will be 10
num2 = input( ) # input will be 20
num3 = num1 + num2
print (f'The sum is {num3:<50}')
最后一段在花括号{num 3:<50}?<50是什么意思??
任何帮助赞赏,谢谢!
1条答案
按热度按时间iyr7buue1#
这意味着该值在给定的50个字符的空间内左对齐,如果后面没有任何东西,这就没有什么意义了:
来自
"<"
上的字符串格式语法文档:强制字段在可用空间内左对齐(这是大多数对象的默认设置)。