• 2022-07-02
    求format()函数值: >>>"{} {}".format("hello", "world") 返回值为() >>> "{0} {1}".format("hello", "world") 返回值为() >>> "{1} {0} {1}".format("hello", "world") 返回值为()
  • 'hello world'#'hello world'#'world hello world'

    内容

    • 0

      Python中,下列程序的运行结果是(). >>>s = “hello world" >>> "{:^20}".format(s)

    • 1

      以下语句不可以在屏幕上输出Hello,World语句是(   ) A: Console.WriteLine(“Hello”+”,World”); B: Console.Write(“Hello{0}”,”,World”); C: Console.WriteLine(“{0},{1}”,”Hello,World”); D: Console.Write(“Hello,World”);

    • 2

      下列哪些语句可以在屏幕上输出 hello,world 语句( ) A: Console.WriteLine( hello{0} ,“,world”); B: Console.WriteLine("hello"+“world”); C: Console.WriteLine( {0},{1} ,“hello,world”); D: Console.Write("hello,world”);

    • 3

      已知x = 'hello world,hello jinan,hello python',那么执行语句x = x.replace('hello','hi',1)之后,x的值为____________。 A: 'hi world,hello jinan,hello python' B: 'hello world,hello jinan,hello python' C: 'hi world,hi jinan,hello python' D: 'hi world,hi jinan,hi python'

    • 4

      执行Java语句“if (1 < 0 || false) System.out.print(“Hello world!”);”显示器上将显示( )。 A: “Hello world!” B: Hello, world! C: Hello world! D: 什么都没显示