0

我正在使用 edX Studio 制作课程。我想做一个自定义的 python 评估输入问题。>xml标签被关闭或标签<中python代码中的符号 似乎存在问题?

<?xml version="1.0"?> 
<problem>
  <p>Name as many online learning platforms as you can: </p>
    <script type="loncapa/python">

def make_a_list(name_string):
    return name_string.split(',')

def count_names(name_list):
    return len(name_list)

def how_many_oli(expect, ans):
    oli_names = ['udacity', 'udemy', 'codecademy', 'iktel'
      'codeschool', 'khan academy', 'khanacademy', 'coursera', 'edx', 'iversity']
    names = make_a_list(ans)
    how_many = len(set(names))
    message_hint = 'Good work!'
    for e in names:
        e=e.strip('"')
        e=e.strip("'")
        e=e.strip()
        e=e.lower()
        who_is = e
        if e not in oli_names:
            message_hint = message_hint+" Tell us about  "+str(who_is).title()+"?"
    if how_many < 1:
        return { 'ok': False, 'msg': 'None at all?'}
    if how_many < 5:
        return { 'ok': True, 'msg': 'Only '+str(how_many)+"?"}
    if how_many == 5:
        return { 'ok': True, 'msg': message_hint }
    if how_many > 5:
        return { 'ok': True, 'msg': message_hint }
    return False

  </script>
  <customresponse cfn="how_many_oli">
  <textline size="100" />
  </customresponse>
</problem>  

我该如何避免这种情况?我知道我可以更改代码以避免使用<>但必须有一种方法来使用它们或类似的东西?

4

2 回答 2

7

XML 中的文本内容(字符数据必须使用预定义的 XML 实体转义<和字符。Python 代码也不例外:&

if how_many &lt; 1:

where<替换为&lt;&&amp;

适当的 XML 解析器将返回未转义的文本内容,用原始字符替换这些实体。

于 2013-11-20T14:54:48.227 回答
4

<并且>是 XML 实体。您需要转义它们,即您需要使用&lt;and&gt;来代替。如果你使用&它自己,&amp;.

如果这很痛苦,您还可以将整个内容放在 CDATA 部分中:

http://www.w3schools.com/xml/xml_cdata.asp

看起来像这样:

<script>
<![CDATA[
if how_many < 1:
    return { 'ok': False, 'msg': 'None at all?'}
]]>
</script>
于 2013-11-20T14:55:24.153 回答