必须提示用户输入字符串并选择要替换的字符
The user must be prompt to input the string and choose which characters to make replace
我需要提示用户输入一个字符串,我应该提示一个输入,要求用户输入要从字符串中替换的字符。
string = input('Enter sentence: ')
string = string.replace(" ","")
print (string)
print ("\n")
像这样:
In [1677]: string = input('Enter sentence: ')
Enter sentence: I am James Bond
In [1678]: replace_input = input("Enter chars to be replaced:")
Enter chars to be replaced:a
In [1679]: string.replace(replace_input, ' ')
Out[1679]: 'I m J mes Bond'
我需要提示用户输入字符串。 这部分你做对了。
string = input('Enter sentence: ')
我应该提示一个输入,要求用户输入要从字符串中替换的字符。 我看不到你要求第二次输入的位置。
replace_input = input('Enter string to replace: ')
现在您可以继续您的代码了
string = string.replace(replace)input, "")
print(string + "\n")
我需要提示用户输入一个字符串,我应该提示一个输入,要求用户输入要从字符串中替换的字符。
string = input('Enter sentence: ')
string = string.replace(" ","")
print (string)
print ("\n")
像这样:
In [1677]: string = input('Enter sentence: ')
Enter sentence: I am James Bond
In [1678]: replace_input = input("Enter chars to be replaced:")
Enter chars to be replaced:a
In [1679]: string.replace(replace_input, ' ')
Out[1679]: 'I m J mes Bond'
我需要提示用户输入字符串。 这部分你做对了。
string = input('Enter sentence: ')
我应该提示一个输入,要求用户输入要从字符串中替换的字符。 我看不到你要求第二次输入的位置。
replace_input = input('Enter string to replace: ')
现在您可以继续您的代码了
string = string.replace(replace)input, "")
print(string + "\n")