helloworld.json 461 字节
Newer Older
F
feilong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
{
  "exercise_id": 33,
  "source": "helloworld.py",
  "depends": [],
  "multiline": [
    {
      "str1 = \"Hello,\"": "",
      "str2 = \"World!\"": "str = \"Hello,World!\"",
      "print('str1'+'str2')": "print(str)"
    },
    {
      "str1 = \"Hello,\"": "",
      "str2 = \"World!\"": "",
      "print('str1'+'str2')": "print(\"Hello\" +\",\" +\"World!\")"
    },
    {
      "print('str1'+'str2')": "print(str1+str2)"
    }
  ],
  "type": "code_options"
}