• 2022-06-09
    ‌以下程序的输出结果是:( )‏‌fo = open("text.txt",'w+')‏‌x,y ='this is a test','hello'‏‌fo.write('{}+{}\n'.format(x,y))‏‌print(fo.read())‏‌fo.close()‏‌‏
    A: this is a test hello
    B: this is a test
    C: this is a test,hello.
    D: this is a test+hello