运行以下程序,当从键盘输入1,程序运行结果是?( )
str1='一二三四五六日'
strid=int(input('请输入1-7的数字:'))
print('星期'+str1[strid-1])
星期一
星期+一
星期二
星期+二