使用 sage math 在 python 中输入文本

发布于 2024-12-27 09:26:05 字数 512 浏览 1 评论 0 原文

下面是我尝试使用 python 的代码,

 >>> import string
 >>> def main():
    print "hey"
    print
    key = input ("key?")
    message = raw_input("Enter the message: ")
    codedMessage = ""
    for ch in message:
    codedMessage = codedMessage + chr(ord(ch) + key)
    print "the coded is: ", codedMessage


    >>> main()
    hey
    key?-1
    Enter the message: hey how are you?
    the coded is: gdx gnv `qd xnt>

但是当我在 sage math 中尝试这个时......输入函数不起作用

Below is the code i tried using python

 >>> import string
 >>> def main():
    print "hey"
    print
    key = input ("key?")
    message = raw_input("Enter the message: ")
    codedMessage = ""
    for ch in message:
    codedMessage = codedMessage + chr(ord(ch) + key)
    print "the coded is: ", codedMessage


    >>> main()
    hey
    key?-1
    Enter the message: hey how are you?
    the coded is: gdx gnv `qd xnt>

but when i tried this in sage math..... the input function does not work

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

生死何惧 2025-01-03 09:26:05

不幸的是,据我所知,虽然 input 和 raw_input 在控制台模式下从 Sage 工作,但在 Sage 笔记本中都不起作用(您没有指定,但我假设您正在使用)。

Unfortunately, to the best of my knowledge, while input and raw_input work from Sage in console mode, neither work from the Sage notebook (which you don't specify, but I'm assuming is what you were using).

童话 2025-01-03 09:26:05

raw_input 确实在 Sage Math Cloud 中工作,尽管现在有些奇怪(请参阅https://github.com/sagemathinc/smc/issues/358)。看起来很漂亮。

raw_input does work in Sage Math Cloud, though with some strangeness right now (see https://github.com/sagemathinc/smc/issues/358). It looks pretty.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文