According to Data Science Topic-6 Identifiers

 # identifiers

# you can't start with a digit

name1 = 'Abhay'

print(name1)

Abhay

# You can use special chars -> _

first_name = 'Abhay'

print(first_name)

Abhay

_ = 'Abhay'

print(_)

Abhay

# identifiers can not be keyword

Comments

Popular posts from this blog

According to Data Science Topic-13 Modules

Functions in Python:

According to Data Science Topic-12 If else program examples