• 2022-06-06 问题

    属于字符串方法的是() A: upper B: lower C: isupper D: islower

    属于字符串方法的是() A: upper B: lower C: isupper D: islower

  • 2022-05-29 问题

    在python中,字符串的方法有() A: replace B: isalpha C: islower D: isupper

    在python中,字符串的方法有() A: replace B: isalpha C: islower D: isupper

  • 2022-06-03 问题

    判断字符串中的字母是否全部为小写()。 A: islower B: pop C: extend D: id

    判断字符串中的字母是否全部为小写()。 A: islower B: pop C: extend D: id

  • 2022-06-15 问题

    判断字符串是否全是数字的字符串方法是()。 A: isspace() B: isdigit() C: istitle() D: islower()

    判断字符串是否全是数字的字符串方法是()。 A: isspace() B: isdigit() C: istitle() D: islower()

  • 2022-10-24 问题

    下列选项中输出结果是True的是( )。 A: "Python".isupper() B: 'A'>'a' C: "Python".islower() D: 'abc'>'ab'

    下列选项中输出结果是True的是( )。 A: "Python".isupper() B: 'A'>'a' C: "Python".islower() D: 'abc'>'ab'

  • 2022-10-24 问题

    下列选项中输出结果是True的是( )。 A: "Python".upper()=="python" B: "Python".islower() C: 'b' D: 'xy'

    下列选项中输出结果是True的是( )。 A: "Python".upper()=="python" B: "Python".islower() C: 'b' D: 'xy'

  • 2022-05-30 问题

    Python的字符串有很多内置函数,下面不是字符串内置函数的是( )。 A: islower() B: dir() C: istitle() D: format

    Python的字符串有很多内置函数,下面不是字符串内置函数的是( )。 A: islower() B: dir() C: istitle() D: format

  • 2022-10-24 问题

    下列选项中输出结果是True的是( ) A: >>> 'abc'>'ab' B: >>> chr(65).isnumeric() C: >>> "Python".islower() D: >>> chr(13).isprintable()

    下列选项中输出结果是True的是( ) A: >>> 'abc'>'ab' B: >>> chr(65).isnumeric() C: >>> "Python".islower() D: >>> chr(13).isprintable()

  • 2022-10-24 问题

    下列选项中输出结果是True的是() A: chr(13).isprintable() B: chr(10).isnumeric() C: "Python".islower() D: isinstance(255,int)

    下列选项中输出结果是True的是() A: chr(13).isprintable() B: chr(10).isnumeric() C: "Python".islower() D: isinstance(255,int)

  • 2021-04-14 问题

    有以下程序,程序中库函数islower (ch)用以判断ch中的字母是否为小写字母 #include #include void fun(char *p ) { int i=0; while(p[i]) { if(p[i]==' '&& islower(p[i-1])) p[i-1]=p[i-1]-'a'+'A'; i++; } } main() { char s1[100]="ab cd EFG !"; fun(s1); printf("%s\n",s1); } 程序运行后的输出结果是________

    有以下程序,程序中库函数islower (ch)用以判断ch中的字母是否为小写字母 #include #include void fun(char *p ) { int i=0; while(p[i]) { if(p[i]==' '&& islower(p[i-1])) p[i-1]=p[i-1]-'a'+'A'; i++; } } main() { char s1[100]="ab cd EFG !"; fun(s1); printf("%s\n",s1); } 程序运行后的输出结果是________

  • 1 2