蓝桥等考Python组别六级002

第一部分:选择题

1、Python L6 (15分)

运行下面的程序,输入哪个数,可使输出的结果为“yes”?(    )

x = int(input())

if x % 10 == 3:

    print("yes")

else:

    print("no")

  1. 12
  2. 16
  3. 20
  4. 23

正答案:D                    

2、Python L6

你可能感兴趣的:(python,算法,开发语言,java,青少年编程)