gpt4 book ai didi

Python:第 1 行的语法无效(文件 )

转载 作者:太空宇宙 更新时间:2023-11-04 10:45:35 24 4
gpt4 key购买 nike

我是 python 和一般编程的新手,我在 Sublime Text 上编写了这段代码,但我看不到其中的错误。

print("Please enter a quote you would like to use: ")
quote = str(input())
print(quote.upper())
print()
print(quote.lower())
print()
print(quote.capitalise())
print()
print(quote.title())

如有任何帮助,我们将不胜感激。

非常感谢,丹

最佳答案

input()替换为raw_input():

print("Please enter a quote you would like to use: ")
quote = str(raw_input())

甚至:

quote = raw_input("Please enter a quote you would like to use: ")

关于Python:第 1 行的语法无效(文件 <string>),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17611391/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com