Back to Freecodecamp

Task 26

curriculum/challenges/english/blocks/learn-how-to-use-basic-programming-vocabulary-in-conversations/662b772113dc330c283730f3.md

latest1.5 KB
Original Source
<!-- (Audio) Brian: How do you declare variables in Python? I'm curious. -->

--description--

In programming, to declare variables means to create them and define their type and initial value. In Python, you can declare a variable simply by assigning a value to it, as the language does not require explicit type definition for variable declaration.

To declare a variable in programming means to create it and give it a name.

--fillInTheBlank--

--sentence--

How do you BLANK BLANK in Python? I'm curious.

--blanks--

declare

--feedback--

This word refers to introducing a new variable with a specific value.


variables

--feedback--

It refers to names used in programs to store data that can be changed during execution.

--scene--

json
{
  "setup": {
    "background": "company2-breakroom.png",
    "characters": [
      {
        "character": "Brian",
        "position": {
          "x": 50,
          "y": 15,
          "z": 1.2
        },
        "opacity": 0
      }
    ],
    "audio": {
      "filename": "5.1-1.mp3",
      "startTime": 1,
      "startTimestamp": 27.44,
      "finishTimestamp": 30.84
    }
  },
  "commands": [
    {
      "character": "Brian",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Brian",
      "startTime": 1,
      "finishTime": 4.4,
      "dialogue": {
        "text": "How do you declare variables in Python? I'm curious.",
        "align": "center"
      }
    },
    {
      "character": "Brian",
      "opacity": 0,
      "startTime": 4.9
    }
  ]
}