Friday, December 10, 2021

Python for Beginners: Assert Statement in Python

Debugging is one of the important parts of a software developer’s journey. Python programming language also provides various constructs for debugging programs. One such construct is an assert statement. In this article, we will discuss what an assert statement is, how it works, and how we can use an assert statement in python.

What is an assert statement in Python?

In Python, Assert statement is a construct used to enforce some condition in the program. The syntax for the assert statement in python is as follows.

assert  condition, message
  • Here assert is a keyword.
  • condition contains the conditional statement that needs to be True. 
  • message is the statement that will be shown when the condition is False. It is optional to use the message in an assert statement.

How does an assert statement work?

An assert statement works by using the AssertionError exception. Whenever the condition given in the assert statement evaluates to True, the program works normally. 

name = "Bill"
age = 20
assert age >= 0
print("{} is {} years old.".format(name,age))

Output:

Bill is 20 years old.

On the contrary, If the condition in the assert statement evaluates to False, the AssertionError exception occurs and the program is terminated. 

name = "Bill"
age = -20
assert age >= 0
print("{} is {} years old.".format(name,age))

Output:

Traceback (most recent call last):
  File "/home/aditya1117/PycharmProjects/pythonProject/string12.py", line 3, in <module>
    assert age >= 0
AssertionError

If we pass a message in the assert statement, the message is also printed when AssertionError occurs.

name = "Bill"
age = -20
assert age >= 0, "Age cannot be negative."
print("{} is {} years old.".format(name,age))

Output:

Traceback (most recent call last):
  File "/home/aditya1117/PycharmProjects/pythonProject/string12.py", line 3, in <module>
    assert age >= 0, "Age cannot be negative."
AssertionError: Age cannot be negative.

So, we can say that the assert statement does nothing when the condition in the assert statement is True. If the condition in the assert statement is False, the python interpreter raises the AssertionError with a proper message.

How to use an assert statement in python?

An assert statement should not be used in a python program to implement any business logic. The assert statement is only used to debug python programs. When your program is not producing the intended output, you can use assert statements to detect where an error occurred. 

For example, suppose that your program is running into an error because a variable like “age” has negative value, which is not a desired situation.

To detect where the error is happening, you can put an assert statement before each statement where you are using the “age” variable. In each assert statement, you can check if the value of “age” is greater than the zero or not. You can also add a message to identify the place at which the IndexError occurs as follows.

name = "Bill"
age = 10
assert age >= 0, "Age takes negative before first print statement."
print("{} is {} years old.".format(name, age))
name = "Sam"
age = -20
assert age >= 0, "Age takes negative before second print statement."
print("{} is {} years old.".format(name, age))

Output:

Bill is 10 years old.
Traceback (most recent call last):
  File "/home/aditya1117/PycharmProjects/pythonProject/string12.py", line 7, in <module>
    assert age >= 0, "Age takes negative before second print statement."
AssertionError: Age takes negative before second print statement.

In the above example, the program terminates prematurely. To avoid this, you can use python try except block. Here, you can write your code in the try block and handle the AssertionError that is raised by the assert statement in the except block as follows. 

try:
    name = "Bill"
    age = 10
    assert age >= 0, "Age takes negative before first print statement."
    print("{} is {} years old.".format(name, age))
    name = "Sam"
    age = -20
    assert age >= 0, "Age takes negative before second print statement."
    print("{} is {} years old.".format(name, age))
except AssertionError as e:
    print(e.args)

Output:

Bill is 10 years old.
('Age takes negative before second print statement.',)

Conclusion

In this article, we have discussed the assert statement in python. We have also discussed how assert statements work and how we can use them in debugging our programs. To learn more about errors, you can read this article on exceptions in python.

The post Assert Statement in Python appeared first on PythonForBeginners.com.



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...