题解 | #表示数字#
表示数字
https://www.nowcoder.com/practice/637062df51674de8ba464e792d1a0ac6
num=input() str1='' # 1.遍历字符串。如果是数字,就就数字前面和后面都加上'#',否则不加 for i in num: if i>='0' and i<='9': str1=str1+'#'+i+'#' else: str1=str1+i # 2.针对连续'##',说明是连续数字,这里去掉。(PS:之所以用#而不用*,就是为了防止字符串有*,我们在消除过程中误把*消除了) str2=str1.replace('##','') # 3.把'#'替换成'*'就可以了 print(str2.replace('#','*'))