. Keywords can be used as variable names.
a. True ( )
b. False ( )
Answers
Answer:
true
pls mark me the brainliest
Answer:
False
Explanation:
The list of keywords is :
[‘False’, ‘None’, ‘True’, ‘and’, ‘as’, ‘assert’, ‘async’, ‘await’, ‘break’, ‘class’, ‘continue’, ‘def’, ‘del’, ‘elif’, ‘else’, ‘except’, ‘finally’, ‘for’, ‘from’, ‘global’, ‘if’, ‘import’, ‘in’, ‘is’, ‘lambda’, ‘nonlocal’, ‘not’, ‘or’, ‘pass’, ‘raise’, ‘return’, ‘try’, ‘while’, ‘with’, ‘yield’]
True: This keyword is used to represent a boolean true. If a statement is true, “True” is printed.
False: This keyword is used to represent a boolean false. If a statement is false, “False” is printed.
None: This is a special constant used to denote a null value or a void. It’s important to remember, 0, any empty container(e. g empty list) does not compute to None.
It is an object of its datatype – None Type. It is not possible to create multiple None objects and can assign them to variables.
Note that neither and nor or restrict the value and type they return to False and True, but rather return the last evaluated argument. This is sometimes useful, e.g., if s is a string that should be replaced by a default value if it is empty, the expression s or ‘foo’ yields the desired value. Because not has to create a new value, it returns a Boolean value regardless of the type of its argument (for example, not ‘foo’ produces False rather than.
So Keywords cannot used as variable.
For more refers to-
https://brainly.in/question/7697308?referrer=searchResults
https://brainly.in/question/3380898?referrer=searchResults
#SPJ3