Iron python不接受像_,`,这样的字符:

时间:2011-04-26 04:22:43

标签: ironpython

嗨我在铁蟒中有一个脚本,其中变量mite包含特殊字符。 Ex name- megha_lohit    网址 - http://url.com

如果name == megha_lohit: 打印'成功' 其他 提出testcaseexception(失败)

这里的代码没有通过if循环并输入其他部分未通过测试用例,即使name = megha_lohit(右侧表达式),同样的情况也是url。有人可以帮帮我

1 个答案:

答案 0 :(得分:0)

通过设计变量名称不能包含“:”和“`”。下划线没问题。也许你的问题是代码中的其他问题。

IronPython 2.7 (2.7.0.40) on .NET 4.0.30319.1
Type "help", "copyright", "credits" or "license" for more information.
>>> a_foo= "hello"
>>> a:foo= "hello"
  File "<stdin>", line 1
    a:foo= "hello"

     ^
SyntaxError: unexpected token ':'

>>> a`foo= "hello"
  File "<stdin>", line 1
    a`foo= "hello"

     ^
SyntaxError: unexpected token '`'

>>>