1/13
Vocabulary flashcards covering fundamental Python concepts, IDE tools, string literals, print formatting, and comment syntax based on Computer Science Exercises 03.02-04.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
IDE
Integrated Development Environment.
3 parts of an IDE
Editor, compiler/interpreter, and debugger.
Python file extension
.py
Executing a program
Running it.
Reason to install Java
jGRASP requires Java to run.
print()
A function that displays text or values on the screen, or can create a blank line when left empty.
end=" "
Keeps the next output on the same line and adds a space.
end=""
Keeps the next output on the same line with no space.
\n
Creates a new line inside a string.
CRLF
Carriage Return Line Feed.
#
Indicates a single-line comment; a line beginning with this symbol is ignored by Python.
Triple quotation marks
Identified as a way to essentially create multi-line comments.
String literal
A sequence of characters enclosed in quotation marks.
Well-documented program
A program that is easier to read, understand, modify, and debug.