0% found this document useful (0 votes)
575 views

Python Revision Flashcards

The document defines key terms related to Python programming. It explains concepts like integrated development environments, variables, data types, operators, loops, and validation. Definitions are provided for string, integer, float, Boolean, concatenation, type casting, selection, annotation, assignment, equality, inequality, comparative, Boolean, and list operators. Loop types like iteration, count-controlled, and condition-controlled are also summarized.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
575 views

Python Revision Flashcards

The document defines key terms related to Python programming. It explains concepts like integrated development environments, variables, data types, operators, loops, and validation. Definitions are provided for string, integer, float, Boolean, concatenation, type casting, selection, annotation, assignment, equality, inequality, comparative, Boolean, and list operators. Loop types like iteration, count-controlled, and condition-controlled are also summarized.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

Python Revision Flashcards Python Revision Flashcards

Integrated The tools needed to


Development write, test and run
Environment computer programs
twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

Temporary storage
Variable of data in a program
which can change
twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

A classification of
data which tells a
Data Type
computer how to
process the data
twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

Text or alphanumeric
String
information

twinkl.com twinkl.com
Python Revision Flashcards Python Revision Flashcards

A whole number, a
Integer number which is not
a fraction
twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

A number which can


Float
be a fraction

twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

Can only be one of


Boolean two values, True or
False
twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

Adding strings
Concatenation
together

twinkl.com twinkl.com
Python Revision Flashcards Python Revision Flashcards

Forcing a change of
Type Casting
data type

twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

Comments in a
Annotation program that explain
what the code does
twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

The process of making


a decision and
Selection
changing the program
flow
twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

Find and then fix


Debug errors in a computer
program
twinkl.com twinkl.com
Python Revision Flashcards Python Revision Flashcards

= is used to give
Assignment operator (assign) a value to a
variable
twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

== is used to compare
one value or condition
Equality operator
with another, to see if
they are the same
twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

!= is used t compare
one value or condition
Inequality operator
with another, to see if
they are not the same
twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

<, <=, >, >= are used


Comparative operator
to compare values

twinkl.com twinkl.com
Python Revision Flashcards Python Revision Flashcards

AND, OR, NOT


Boolean operator are used in logic
expressions
twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

A type of data
structure used to
List (or Array)
store multiple items of
similar data
twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

Repeating a block of
Iteration
code

twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

Iterating code a fixed


Count-controlled loop number of times (for-
loop)
twinkl.com twinkl.com
Python Revision Flashcards Python Revision Flashcards

Repeating code while


Condition-controlled
or until a condition is
loop
true (while-loop)
twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

Checking that
Validation inputted data is in
the correct format
twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

Showing a user what


Verification they have already
inputted
twinkl.com twinkl.com

Python Revision Flashcards Python Revision Flashcards

A seemingly random
Pseudo-random
number generated by
number
an algorithm
twinkl.com twinkl.com

You might also like