是否有任何命令可以使数学信号 "not equal" 出现在字符串中?
Is there any command to make the math signal "not equal" appear in a string?
例如,要打印我使用的希腊字母 alpha \u03B1
,输出为:
α
现在我想像这样打印不等于:
≠
您可以执行以下操作:
print(u'\u2260')
u"\u2260"
来源: https://www.fileformat.info/info/unicode/char/2260/index.htm
您可以通过 google 搜索获得大多数 UTF 编码:)
例如,要打印我使用的希腊字母 alpha \u03B1
,输出为:
α
现在我想像这样打印不等于:
≠
您可以执行以下操作:
print(u'\u2260')
u"\u2260"
来源: https://www.fileformat.info/info/unicode/char/2260/index.htm
您可以通过 google 搜索获得大多数 UTF 编码:)