print('input', 'output', sep = '&')运行结果为:input&output。
查看答案
print('input', 'output', sep = '&', end = '……')运行结果为:input&output……
A. 对
B. 错
Python允许在一行写多条语句,但两条语句之间必须用分号“,”隔开。
A. 对
B. 错
print("I'm learning Python.");print();print('I study hard!')输出结果为:I'm learning Python.I study hard!
A. 对
B. 错
print('c:\now')运行结果为:c:\now
A. 对
B. 错