中国大学MOOC: 下列字符串运行结果是____________。>>>x=hello>>>{0:*^11}.format(x)
举一反三
- 【填空题】下列字符串运行结果是( )。 x='hello' '{0.*^11}'.format(x)
- 用print()函数打印输出一个字符串的第一个字符,该字符串存储在x中,以下方法正确的是: A: format(x[0]) B: format(x[1]) C: format(x[1:]) D: format(x)
- 中国大学MOOC: 选择下列输入的运行结果{x^2-1/.x→2, x^2-1/.x→5}
- 以下程序运行后的输出结果是x="hello "print(x*3) A: hello*3 B: hello hello hello C: hello D: hellohellohello
- 中国大学MOOC: 假定所有变量均已正确说明,以下程序段运行后的输出结果是 。int x=0; do { x= -1*x; }while(!x);