python写xml中文本节点怎么才能不换行

2024-12-22 11:26:10
推荐回答(1个)
回答1:

1、在python 2.x中,在print 'xxxx' 后面加一个逗号
print 'hello world',

2、python 3.x中,需要在函数内增加一个end字段:
print('hello world', end='')