For working professionals
For fresh graduates
More
13. Print In Python
15. Python for Loop
19. Break in Python
23. Float in Python
25. List in Python
27. Tuples in Python
29. Set in Python
53. Python Modules
57. Python Packages
59. Class in Python
61. Object in Python
73. JSON Python
79. Python Threading
84. Map in Python
85. Filter in Python
86. Eval in Python
96. Sort in Python
101. Datetime Python
103. 2D Array in Python
104. Abs in Python
105. Advantages of Python
107. Append in Python
110. Assert in Python
113. Bool in Python
115. chr in Python
118. Count in python
119. Counter in Python
121. Datetime in Python
122. Extend in Python
123. F-string in Python
125. Format in Python
131. Index in Python
132. Interface in Python
134. Isalpha in Python
136. Iterator in Python
137. Join in Python
140. Literals in Python
141. Matplotlib
144. Modulus in Python
147. OpenCV Python
149. ord in Python
150. Palindrome in Python
151. Pass in Python
156. Python Arrays
158. Python Frameworks
160. Python IDE
164. Python PIP
165. Python Seaborn
166. Python Slicing
168. Queue in Python
169. Replace in Python
173. Stack in Python
174. scikit-learn
175. Selenium with Python
176. Self in Python
177. Sleep in Python
179. Split in Python
184. Strip in Python
185. Subprocess in Python
186. Substring in Python
195. What is Pygame
197. XOR in Python
198. Yield in Python
199. Zip in Python
Literals in Python represent constant values that are directly written into the code. They can be numbers, strings, or other constant values that don't change during program execution. Understanding types of literals in Python is essential for writing clean and efficient code.
The challenge is knowing how to properly use these literals in your program. With various types of literals available, it’s important to understand the distinctions and when to apply each one.
This tutorial will provide clarity on the types of literals in Python with example. You’ll see how numbers, strings, and other literals function, as well as practical literals in Python examples to help you grasp their usage quickly.
By the end, you’ll be equipped with the knowledge to effectively use literals in your Python code.
“Enhance your Python skills further with our Data Science and Machine Learning courses from top universities — take the next step in your learning journey!”
Literals make the code more readable and understandable because they allow you to define constants explicitly.
But why exactly are they so useful?
Literals make your code clear and easy to follow. When you write numbers or strings directly into your code, they act as self-explanatory values that define the intended behavior without needing extra explanation.
Let’s see an example:
age = 25 # Age is a literal value
name = "John" # Name is a literal string
Output:
None (this is just variable assignment)
Explanation:
By directly assigning values rather than recalculating or referencing external data, you reduce the complexity and processing time.
For instance, using a literal string in an expression is much faster than storing and accessing that string from an external file or database.
# Using literals to simplify expression
greeting = "Hello, " + "John" # Directly using a literal string
print(greeting)
Output:
Hello, John
Explanation:
“Start your coding journey with our complimentary Python courses designed just for you — dive into Python programming fundamentals, explore key Python libraries, and engage with practical case studies!”
Python supports several types of literals, which are predefined constants used in your code to represent data values. Each literal corresponds to a specific data type, allowing you to define values directly in your program.
Integer literals represent whole numbers, both positive and negative. They can be written directly into the code without any quotes. Let’s see an example of using integer literals:
x = 10 # Positive integer literal
y = -5 # Negative integer literal
z = 0 # Zero as integer literal
print(x, y, z)
Output:
10 -5 0
Explanation:
Floating-point literals represent numbers with decimal points. They can also be written in scientific notation for very large or very small numbers. Here’s an example:
# Floating-point literals
pi = 3.14159 # Standard float
small_num = 1e-5 # Scientific notation
print(pi, small_num)
Output:
3.14159 1e-05
Explanation:
String literals represent sequences of characters. They are enclosed in single (') or double (") quotes. Python also allows multi-line string literals using triple quotes (''' or """).
Let’s explore how string literals work:
single_quote_str = 'Hello, Python!' # Single quotes
double_quote_str = "Python is awesome!" # Double quotes
multi_line_str = '''This is
a multi-line string'''
print(single_quote_str, double_quote_str, multi_line_str)
Output:
Hello, Python! Python is awesome! This isa multi-line string
Explanation:
Boolean literals represent the two possible truth values: True or False. These are used in logical operations and conditions.
Let’s see an example:
is_active = True
is_finished = False
print(is_active, is_finished)
Output:
True False
Explanation:
The None literal represents the absence of a value or a null value. It’s often used to indicate that a variable or object has not been assigned a meaningful value yet. Here's an example:
value = None
print(value)
Output:
None
Explanation:
Complex numbers have both a real and an imaginary part. In Python, you can define complex literals using the format a + bj, where a is the real part and b is the imaginary part. Let’s see how complex literals work:
complex_num = 3 + 5j
print(complex_num)
Output:
(3+5j)
Explanation:
In Python, literal collections are a special kind of literal used to represent data structures like lists, tuples, sets, and dictionaries. These are essential for storing and organizing data in your programs.
A list is an ordered collection of elements that can be of any data type. Lists are defined using square brackets ([]). They are mutable, meaning you can change their contents after they’ve been created. Here’s an example of using list literals:
numbers = [10, 20, 30, 40, 50]
print(numbers)
Output:
[10, 20, 30, 40, 50]
Explanation:
A tuple is similar to a list, but it is immutable. This means you cannot change a tuple after it has been created. Tuples are defined using parentheses (()). Here’s how you can use tuple literals:
coordinates = (10, 20, 30)
print(coordinates)
Output:
(10, 20, 30)
Explanation:
A set is an unordered collection of unique elements. Sets are defined using curly braces ({}). Sets are particularly useful for ensuring that there are no duplicate elements in the collection. Let’s see an example:
fruits = {"apple", "banana", "cherry", "apple"}
print(fruits)
Output:
{'banana', 'cherry', 'apple'}
Explanation:
A dictionary is an unordered collection of key-value pairs. You define dictionaries using curly braces ({}), with each key and value separated by a colon (:). Here’s how you can use a dictionary literal:
person = {"name": "John", "age": 30, "city": "New York"}
print(person)
Output:
{'name': 'John', 'age': 30, 'city': 'New York'}
Explanation:
You can also combine different literal collections into a more complex structure. For instance, you might have a list of dictionaries, or a set of tuples. Let’s look at an example of nested literals:
nested_data = [{"name": "Alice", "age": 25}, {"name": "Bob", "age": 30}]
print(nested_data)
Output:
[{'name': 'Alice', 'age': 25}, {'name': 'Bob', 'age': 30}]
Explanation:
Why Use Literal Collections?
Using literal collections makes it easy to define and organize data directly within your code, without needing to initialize them separately. These collections provide powerful ways to manage and manipulate large datasets, allowing you to:
Also Read: What Is Mutable And Immutable In Python?
A. Literals in Python are fixed values used directly in code, such as numbers, strings, and boolean values. They represent constant data that doesn’t change during program execution.
A. The main types of literals in Python are integer, float, string, boolean, None, and complex literals. Each represents a different kind of data used in your program.
A. Yes! For example, 10 (integer), 3.14 (float), "Hello" (string), True (boolean), None (NoneType), and 2 + 3j (complex) are literals in Python examples.
A. Literals are used to directly represent data in Python. They make your code more readable and simplify the process of assigning values to variables.
A. An integer literal is defined by simply writing a whole number, such as 5, -10, or 1000. These are types of literals in Python that represent whole numbers.
A. The difference between division and modulus in Python is that division returns the quotient, while modulus returns the remainder after division. For example, 17 % 5 gives the remainder 2.
A. A float literal is defined by writing a number with a decimal point, such as 3.14 or -0.5. This is one of the types of literals in Python with example.
A. String literals in Python are sequences of characters enclosed in quotes, either single (') or double ("), like "Python" or 'Hello, world!'.
A. Boolean literals represent truth values and are written as True or False. They are used in conditional statements to control the flow of a program.
A. Complex literals in Python represent numbers with both a real and an imaginary part, written in the form a + bj, like 3 + 5j.
A. Yes, you can use literals to create arrays in Python, such as lists, tuples, or sets, which are also considered types of literals in Python. For example, my_list = [1, 2, 3] is a list literal.
A. None is a special literal used to represent the absence of a value or a null value. It’s often used to initialize variables or indicate missing data.
Take our Free Quiz on Python
Answer quick questions and assess your Python knowledge
Author
Talk to our experts. We are available 7 days a week, 9 AM to 12 AM (midnight)
Indian Nationals
1800 210 2020
Foreign Nationals
+918045604032
1.The above statistics depend on various factors and individual results may vary. Past performance is no guarantee of future results.
2.The student assumes full responsibility for all expenses associated with visas, travel, & related costs. upGrad does not provide any a.