Try the fastest way to create flashcards
hello quizlet
Home
Subjects
Expert Solutions
Log in
Sign up
Py4e: Chapter 1
4.7 (34 reviews)
Flashcards
Learn
Test
Match
Q-Chat
When Python is running in the interactive mode and displaying the chevron prompt (>>>) - what question is Python asking you?
Click the card to flip 👆
...
Click the card to flip 👆
1 / 10
1 / 10
Flashcards
Learn
Test
Match
Q-Chat
Created by
emily_sanders1
Share
Share
Students also viewed
Python Coding
100 terms
Python quiz chapter 2
14 terms
PRP Course 1
56 terms
Chapter 2 Quiz
13 terms
Computer Terminology
21 terms
Py4e part 4
10 terms
Computer Systems Exam II Mayhee
11 terms
CS 252 Unit 3
21 terms
5.02 vocab.
14 terms
Terms in this set (10)
When Python is running in the interactive mode and displaying the chevron prompt (>>>) - what question is Python asking you?
What will the following program print out:
>>> x = 15
>>> x = x + 5
>>> print(x)
20
Python scripts (files) have names that end with:
.py
Which of these words are reserved words in Python ?
if, break, while
What is the proper way to say "good-bye" to Python?
quit()
Which of the parts of a computer actually executes the program instructions?
Central Processing Unit (CPU)
What is "code" in the context of this course?
A sequence of instructions in a programming language
A USB memory stick is an example of which of the following components of computer architecture?
Secondary Memory
What is the best way to think about a "Syntax Error" while programming?
The computer did not understand the statement that you entered
Which of the following is not one of the programming patterns covered in Chapter 1?
Random steps