15 "text": "\nTraditionally the first program you write in any programming language is <code>\"Hello World!\"</code>.\n<br><br>\nIntroduce yourself to the World.\n<br>\n",
21 "text": "from test_helper import run_common_tests, failed, passed, get_answer_placeholders\n\n\ndef test_ASCII():\n windows = get_answer_placeholders()\n for window in windows:\n all_ascii = all(ord(c) < 128 for c in window)\n if not all_ascii:\n failed(\"Please use only English characters this time.\")\n return\n passed()\n\n\ndef test_is_alpha():\n window = get_answer_placeholders()[0]\n is_multiline = window.find(\"\\n\")\n if is_multiline != -1:\n window = window[:is_multiline-1]\n splitted = window.split()\n for s in splitted:\n if not s.isalpha():\n failed(\"Please use only English characters this time.\")\n return\n\n passed()\n\n\nif __name__ == '__main__':\n test_ASCII()\n run_common_tests(\"You should enter your name\")\n test_is_alpha()\n\n\n",
29 "hint": "[\"Type your name here.\"]",
34 "hints": ["Type your name here."],
35 "possible_answer": "Liana"
39 "possible_answer": "miss X"
44 "text": "print(\"Hello, world! My name is type your name\")\n",
45 "name": "hello_world.py"
48 "title": "Our first program",
50 "last_subtask_index": 1
57 "progress": "77-98626",
64 "instruction_type": null,
67 "correct_ratio": 0.7805243445692884,
69 "is_solutions_unlocked": false,
70 "solutions_unlocked_attempts": 3,
71 "has_submissions_restrictions": false,
72 "max_submissions_count": 3,
73 "create_date": "2016-04-11T15:25:39Z",
74 "update_date": "2016-08-03T11:05:13Z",
75 "discussions_count": 0,
76 "discussion_proxy": "77-98626-1",
77 "discussion_threads": [