Computer Science Study Guide Exercises 03.02-04

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/13

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering fundamental Python concepts, IDE tools, string literals, print formatting, and comment syntax based on Computer Science Exercises 03.02-04.

Last updated 1:42 PM on 8/28/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

14 Terms

1
New cards

IDE

Integrated Development Environment.

2
New cards

3 parts of an IDE

Editor, compiler/interpreter, and debugger.

3
New cards

Python file extension

.py

4
New cards

Executing a program

Running it.

5
New cards

Reason to install Java

jGRASP requires Java to run.

6
New cards

print()

A function that displays text or values on the screen, or can create a blank line when left empty.

7
New cards

end=" "

Keeps the next output on the same line and adds a space.

8
New cards

end=""

Keeps the next output on the same line with no space.

9
New cards

\n

Creates a new line inside a string.

10
New cards

CRLF

Carriage Return Line Feed.

11
New cards

#

Indicates a single-line comment; a line beginning with this symbol is ignored by Python.

12
New cards

Triple quotation marks

Identified as a way to essentially create multi-line comments.

13
New cards

String literal

A sequence of characters enclosed in quotation marks.

14
New cards

Well-documented program

A program that is easier to read, understand, modify, and debug.