作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试学习如何在 Python 3 中使用 ascii
函数。
文档读取
ascii(object)
As repr(), return a string containing a printable representation of an object, but escape the non-ASCII characters in the string returned by repr() using \x, \u or \U escapes. This generates a string similar to that returned by repr() in Python 2.
但是,当我尝试使用 print ascii("c")
时,我收到错误消息:
print ascii("c")
^
SyntaxError: invalid syntax
如何使用这个功能?
最佳答案
print
是 python3 中的一个函数,您收到该错误是因为您试图将其用作语句。
print (ascii("c"))
演示:
>>> print (ascii("c"))
'c'
>>> print ascii("c")
File "<ipython-input-3-c44db7d0eada>", line 1
print ascii("c")
^
SyntaxError: invalid syntax
关于python - 如何在 Python 3 中使用 ascii 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17418681/
我是一名优秀的程序员,十分优秀!