我知道这个替换字符的问题可能已经提出来了,我已经检查过了,但他们仍然没有回答我的问题。我也是python的新手,所以我的理解并不是那么神奇。
def stringMix():
MixA = print (userStringA.replace([0:2],userStringB[0:2]))
MixB = print (userStringB.replace([0:2],userStringB[0:2]))
userStringA = input("Please enter a string consisting of over two characters ")
userStringB = input("Please enter a second string consisting of over two characters ")
print (userStringA)
print (userStringB)
print (MixA, MixB)
到目前为止,这是我的代码,但是当我运行它时,它会突出显示冒号的语法错误。我只想用userStringB的前两个字符替换userStringA的前两个字符,反之亦然。
答案 0 :(得分:3)
您没有正确使用方法调用。即,您将stringMix定义为函数,但使用的函数范围之外的变量。我想你要做的是:
def stringMix(a,b):
print (a.replace([0:2]b[0:2]))
print (b.replace([0:2],a[0:2]))
userStringA = input("Please enter a string consisting of over two characters ")
userStringB = input("Please enter a second string consisting of over two characters ")
print (userStringA)
print (userStringB)
stringMix(userStringA,userStringB)
但是,正如之前的答案和评论所暗示的那样,str.replace
并不是真正的方法。你应该这样做:
def stringMix(a,b):
print (a[0:2]+b[2:])
print (b[0:2]+a[2:])
利用字符串切片和连接
答案 1 :(得分:1)
userStringA,userStringB = userStringB[:2] + userStringA[2:],userStringA[:2] + userStringB[2:]
我猜......
答案 2 :(得分:1)
简单地说:
print userStringB[:2] + userStringA[2:]
和
print userStringA[:2] + userStringB[2:]
答案 3 :(得分:0)
List<Product> findAllByOrderByAvailableAsc(); //or Desc
是一种方法,如果您希望python 搜索以查找字符串中的子字符串,然后将其替换为另一个字符串。你想要做的只是
replace