【小白从小学Python、C、Java】
【计算机等考+500强证书+考研】
【Python-数据分析】
将文本缩短为指定的长度
textwrap.shorten()
请问运行结果是:
import textwrap
text = "123 56 890"
shortened_text = textwrap.shorten(text, width=9)
print(shortened_text)
A选项:123 [...]
B选项:123 56 890
C选项:...
D选项:[...]
?
问题解析
示例代码
正确答案是A