作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这本书现在向我展示了两次自己使用的"
。
def chooseCave():
cave = "
while cave != '1' and cave != '2':
print('Which cave will you go into?(Enter 1 or 2)')
cave = input()
"
来实现我想要的。
最佳答案
我认为您对这本书有轻微的误读。
您会注意到,在本示例的其余部分中,他们都使用单引号来标记字符串。我怀疑这的第一次用法没有什么不同。
这个例子实际上是;
def chooseCave():
cave = ''
while cave != '1' and cave != '2':
print('Which cave will you go into?(Enter 1 or 2)')
cave = input()
关于python - 教科书本身显示双引号,但是当我尝试时会给出SyntaxError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46701851/
这个问题在这里已经有了答案: Convert int to double (3 个答案) 关闭 4 年前。 我正在根据课文学习 C。作者提供的示例代码是: #include main() { in
我正在为一个学校项目实现 RSA 密码系统。我在 Linux 上用 C 语言做这个项目,我使用 GNU MP 库进行大部分数学运算。 出于某种原因,对于具有相同消息的不同公钥,我总是得到相同的密文,所
int x = random(); int y = random(); unsigned ux = (unsigned) x; unsigned uy = (unsigned) y; 对于以下每个 C
int x = random(); int y = random(); unsigned ux = (unsigned) x; unsigned uy = (unsigned) y; 对于以下每个 C
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 11 年前。 Improve thi
我是一名优秀的程序员,十分优秀!