我正在使用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
我怎么把它们放在一起?
答案 0 :(得分:0)
将type_of_partition
功能print result
更改为return result