Computer Science, asked by naqvinasira, 29 days ago

variables are used to store a value (true or false)​

Answers

Answered by madhurane78
1

Answer:

" Answer is true "

Explanation:

An assignment statement stores a value in a variable

Answered by kashyapkasturi6
3

Answer:

True

Explanation:

Variables are reserved memory locations to store values in Python.

There are certain rules for creating a variable:-

A variable name must start with a letter or the underscore character.

A variable name cannot start with a number.

A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and _ ).

Variable names are case-sensitive (name, Name and NAME are three different variables).

The reserved words(keywords) cannot be used naming the variable.

Similar questions