10 cards generated

Save your deck before it's gone

These flashcards aren't stored yet — they'll disappear when you leave. Create a free account to keep them, and unlock everything below.

Keep & study
  • Save this deck to your account
  • Study with spaced repetition
  • Export to Anki (.apkg) or PDF
Bigger & better generations
  • Process documents up to 100 pages
  • Images extracted from your PDFs
  • Sharper text extraction & a more advanced AI model
Sign up free → Free forever · No credit card

Flashcards in this deck (10)

Searching...
  • What is Python?


    A general-purpose programming language created by Guido van Rossum in 1991, focusing on code readability with whitespace.

    programming python
  • What are Mathematical Operators in Python?


    • and - for addition and subtraction, * for multiplication, / for division, // for integer division, % for modulus (remainder).
    programming operators
  • What is a Variable in Python?


    A storage location that holds a value. Must start with a letter, contain no punctuation, use camelCase or underscores.

    programming variables
  • What is a String in Python?


    Text stored in a variable, default type unless specified as int or float.

    programming data_types
  • What do Flow Diagrams represent?


    Graphical symbols for programming logic: - Terminator: Rounded rectangle - Input/Output: Parallelogram - Process: Rectangle - Decision: Diamond

    programming flowcharts
  • What does a Loop do in Python?


    Repeats code while a certain condition is met.

    programming loops
  • What does the input() method do?


    Prompts the user for input, e.g., food = input('Favourite Food:')

    programming methods
  • What does the print() method do?


    Outputs text to the console, e.g., print('I hate', food)

    programming methods
  • What is an else statement in Python?


    Executes code if the previous condition is false, e.g., print('you can’t vote yet')

    programming control_flow
  • What is an elif statement?


    An 'else if' statement that checks another condition, e.g., elif xxx:

    programming control_flow