Computer Science, asked by arathore12345678, 11 months ago

Out of the following, find those identifiers, which can not be used for naming Variable, Constants or Funtions in a python program
:
Total*Tax, double, Case, My Name, NeW, switch, Column31, _Amount​

Answers

Answered by gominigupta
5

Answer:

Listing invalid identifiers:

Total*Tax

double

My Name

switch

Explanation:

reasons for being invalid :

Total*Tax : special symbols( like * in this case ) are not allowed. only underscore( _ ) allowed

double : in-built keyword

My Name : contains space

switch : in-built keyword

Similar questions