Python语言中,对于字符串str=’helloworld’,str[0]=(),str[2:-4]=(),str[6:]=()


Python语言中,对于字符串str=’helloworld’,str[0]=(),str[2:-4]=(),str[6:]=()

正确答案:‘h’‘llow’‘world’;75、执行上述代码,输出的两行结果分别为()、()

正确答案:helloworldhello!hello!hello!

分析:76、执行上述代码,输出的三行结果分别为()、()、()

正确答案:113.14123B

分析:77、python语言中,s=’hello’,t=’world’,s+=t,则s=(),s[2:8]=(),s[::3]=()

正确答案:‘helloworld’‘llowor’‘hlod’;分析:78、python中表示’4’+’5’结果是否为’9’的判断语句为(),结果为()

正确答案:‘4’+’5’==’9′False

分析:79、python中print(‘abcd'<‘ad’)的输出为()(填True或False)

正确答案:True

分析:从字符串的左边第一个开始,逐个比较字符对应的ASCII码值