Computer Science, asked by neelakshi83, 2 months ago

python variables do not need explicit -------------- to reserve memory space​

Answers

Answered by prekshaaora
6

Explanation:

Python variables do not need explicit declaration to reserve memory space.

Answered by anjaliom1122
0

Answer:

Python variables do not need explicit declaration to reserve memory space​.

Explanation:

To set reserve memory, Python variables don't require an explicit declaration. When you give a variable a value, the declaration occurs automatically. For assigning values to variables, use the equal sign (=). To set aside memory, Python variables don't require an explicit declaration.

Address the following in your initial post based on this assertion:

  • Give examples to illustrate the distinction between explicit typed variables and implicit typed variables.
  • Explain whether explicit declaration has a greater impact than implicit declaration in large-scale applications.
  • Variables in Python do not require an explicit declaration to reserve memory space, in contrast to other high level languages.
  • When you give a variable a value, the declaration occurs automatically.
  • For assigning values to variables, use the equal sign (=).
  • The name of the variable is the operand to the left of the = operator, and the value that is stored in the variable is the operand to the right of the = operator.
Similar questions