Python

Cards (54)

    • IDE - Integrated Development Environment
    • IDE - A software that provides different tools to computer programmers for software development
    • IDE - It provides different tools to computer programmers for software development
  • E-Dictionaries - provide a written account of all the terms and concept introduced or defined in the videos.
    • Coding Exercise - helps put what we've learned to practice.
    • Coding Challenges - will present examples of codes with missing components.
  • Google Collab - the more convenient option, which doesn't require any downloads or installation.
  • Assessment - will test if you retained any information.
  • Programming - is the act of giving very specific instructions for a computer to follow.
  • Programming Languages - translate your commands into machine code to make it easier for your computer to understand you.
  • C and Assembly languages - are low level languages.
  • Java, C++, C#, JavaScript, and Python - are high level languages.
  • What do i need to know about the syntax of python?
    -designed for readability
    -utilizes the English language
    -only needs to move to the next line to complete a code
  • Why should i learn python?
    -Simplicity
    -Versatility
    -Career opportunities and growth
  • The print() function - prints the text within the parentheses on the console.
  • String - is a sequence of characters.
  • Guido van Rossum - created the python programming language.
  • Phyton - considered to be a high level language that is known for its readability.
  • Syntax - a set of rules that dictate how to use characters and keywords for the computer to interpret.
  • Czech Company JetBrains in 2021 developed PyCharm
  • Run - is used to execute or launch a programing by clicking the Run button.
  • Console - shows the code executed and "enables executing python commands and scripts line by line."
  • python uses English commands, which makes it more understandable for programmers.
  • Variable - can be named almost anything but the first character cannot be a digit.
  • Value - can be anything, from a string to number, etc.
  • String Concatenation - is used to add strings together, or to add strings to variables.
  • Comments - are completely ignored they are entirely for the use of programmers like you.
  • Indentation - As extremely important because we use them to create new block of code.
  • Parentheses - in the print () function indicate that we need to put something within them.
  • Errors - result from python rules not being followed in our code.
  • Block of code - refers to code that belongs to the same line, and are intended.
  • Indentation - is required for indicating a block of code.
  • Comments - can be written using the hash character.
  • Data Types - specify the type of value a variable can store.
  • Numbers - a data type that includes integers and floating numbers.
  • Numbers - are used quite often in programming to keep score in games.
  • Boolean - a data type with either a true or false value.
  • Int - converts a float into an integer, with no decimal points.
  • Float function - converts an integer into a floating number.
  • STR - converts data into string.