code_generation / research_1 /py_language_definition.jsonl
rqualis's picture
Upload 8 files
231f7e4 verified
raw
history blame
607 Bytes
{"prompt": "How are keywords written in the Python programming language?", "completion": "In the Python programming language, keywords are typically written in lowercase. For example, `print \"print should be written in lowercase letters\"`.", "classification": "Syntax"}
{"prompt": "How are local variables to a procedure declared in Python?", "completion": "In Python, variables local to the procedure are declared using the name of the keyword followed by the variable = and then some value. By default, variables are empty strings. For instance, `mode=''`.", "classification": "Variables & Data Types"}