【填空题】下列字符串运行结果是( )。 x='hello' '{0.*^11}'.format(x)
举一反三
- 中国大学MOOC: 下列字符串运行结果是____________。>>>x=hello>>>{0:*^11}.format(x)
- 用print()函数打印输出一个字符串的第一个字符,该字符串存储在x中,以下方法正确的是: A: format(x[0]) B: format(x[1]) C: format(x[1:]) D: format(x)
- 以下程序运行后的输出结果是x="hello "print(x*3) A: hello*3 B: hello hello hello C: hello D: hellohellohello
- 【填空题】表达式 '{0:#d},{0:#x},{0:#o}'.format(65) 的值为 _____________ 。
- 以下程序的输出结果是: fo = open(“texttxt”,‘w+’) x,y =‘this is a test’,‘hello’ fo.write(’{}+{} ’format(x,y)) print(fo.read()) fo.close()