我当前正在为Windows版本3.8.0运行python。我可以运行下面的代码,它在Linux机器上可以正常运行,但是在Windows中无法打印任何内容。
a = "This is the island of istanbul"
b = a.replace("is" , "was")
print (b)
答案 0 :(得分:1)
我运行了代码,它运行良好,但它打印出“那是伊斯坦布尔的荒原”,除非那是要打印的。 如果要让代码打印“这是伊斯坦布尔的孤岛”,则需要在replace方法上添加空格。
a = "This is the island of istanbul"
b = a.replace(" is ", " was ")
print(b)
答案 1 :(得分:0)
就像我安装Microsoft Visual Studio Code一样,它也在不同的位置安装了自己的python版本。
运行where.exe python我得到:
IEnumerable<PocoClass> dbColumns = null
那一直导致所有问题。
感谢用户eryk-sun建议要查找的内容。