Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (19.9k points)

Is there a way to declare a constant in Python? In Java we can create constant values in this manner:

public static final String CONST_NAME = "Name";

What is the equivalent of the above Java constant declaration in Python?

1 Answer

0 votes
by (25.1k points)
edited by

In python you cannot declare constant you need to use it as is.

Take a look at this video in case you wish to learn more about python: 

Related questions

0 votes
1 answer
asked Oct 14, 2019 in Python by Sammy (47.6k points)
+3 votes
2 answers
asked May 25, 2019 in Python by siyal (210 points)
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
asked Mar 20, 2021 in Java by Jake (7k points)

Browse Categories

...