10 cards generated

๋ฑ์ด ์‚ฌ๋ผ์ง€๊ธฐ ์ „์— ์ €์žฅํ•ด ๋‘ฌ

์ด ํ”Œ๋ž˜์‹œ์นด๋“œ๋Š” ์•„์ง ์ €์žฅ๋˜์ง€ ์•Š์•˜์–ด โ€” ํŽ˜์ด์ง€๋ฅผ ๋‚˜๊ฐ€๋ฉด ์‚ฌ๋ผ์ ธ. ๋ฌด๋ฃŒ ๊ณ„์ •์„ ๋งŒ๋“ค๋ฉด ์ €์žฅ๋˜๊ณ  ์•„๋ž˜ ๊ธฐ๋Šฅ๋“ค๋„ ๋ชจ๋‘ ์ด์šฉํ•  ์ˆ˜ ์žˆ์–ด.

์ €์žฅํ•˜๊ณ  ๊ณต๋ถ€ํ•˜๊ธฐ
  • Save this deck to your account
  • Study with spaced repetition
  • Export to Anki (.apkg) or PDF
๋” ํฌ๊ณ  ๋” ๋‚˜์€ ์ƒ์„ฑ
  • 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)

๊ฒ€์ƒ‰ ์ค‘...
  • 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