如何在 python 的一行中打印一些文本和一个函数结果?
how to print some text and a function result on one line in python?
我正在使用 python3.6。我正在尝试在一行中打印一些文本和一个函数的结果。
print("Type of partition:")
type_of_partition(partentry)
这给了我:
Type of partition:
FAT 16
但我希望他们在同一条线上,因为它看起来很友好。我试过了
print("Type of partition: ", type_of_partition(partentry))
这给了我:
Type of partition: None
FAT 16
我试过了:
print("Type of partition: %s" % type_of_partition(partentry))
这给了我:
FAT 16
Type of partition: None
如何将它们组合在一起?
将 type_of_partition
函数的 print result
更改为 return result
我正在使用 python3.6。我正在尝试在一行中打印一些文本和一个函数的结果。
print("Type of partition:")
type_of_partition(partentry)
这给了我:
Type of partition:
FAT 16
但我希望他们在同一条线上,因为它看起来很友好。我试过了
print("Type of partition: ", type_of_partition(partentry))
这给了我:
Type of partition: None
FAT 16
我试过了:
print("Type of partition: %s" % type_of_partition(partentry))
这给了我:
FAT 16
Type of partition: None
如何将它们组合在一起?
将 type_of_partition
函数的 print result
更改为 return result