python 循环结构编程 第四题 要求 编写代码,根据用户随机输入的一行字符,判断是否包含数字字符,如果不包含,给出相应提示。 示例 代码 方法一 s = input( ) for c in s: if c>= '0' and c<='9'