NP90. 修正错误的字母
描述
输入描述
输入一个字符串表示录入的用户名字,其中必定包括子串'a*'。输出描述
输出全部替换后的字符串。示例1
输入:
a*andon
输出:
abandon
Python 3 解法, 执行用时: 29ms, 内存消耗: 4512KB, 提交时间: 2022-08-02
a = str(input()) b = a.replace('a*','ab') print(b)
Python 3 解法, 执行用时: 30ms, 内存消耗: 4472KB, 提交时间: 2022-08-03
x = input() print(x.replace("a*","ab"))
Python 3 解法, 执行用时: 30ms, 内存消耗: 4492KB, 提交时间: 2022-08-02
str1=input() str1=str1.replace("a*","ab") print(str1)
Python 3 解法, 执行用时: 30ms, 内存消耗: 4508KB, 提交时间: 2022-08-04
print(input().replace("a*","ab"))
Python 3 解法, 执行用时: 30ms, 内存消耗: 4512KB, 提交时间: 2022-07-29
n=input() print(n.replace('a*','ab'))