但是,这样做会导致回溯错误: ValueError:Invalid format specifier
任何建议表示赞赏
守着星空守着你
浏览 128回答 1
1回答
侃侃无极
以下将引发ValueError: Unknown format code异常:n = 8print("{:<n}world".format("hello"))因此,实现所需行为的一种方法是使用 f 字符串,尽管它有点愚蠢:print(f"{{:<{n}}}world".format("hello"))输出:hello world