Learn practical skills, build real-world projects, and advance your career
!pip install jovian --upgrade --quiet
import jovian

Question 1: What are mnemonic variable names? Why is a good practice to use them?

 a_pun = '''Mnemonic variable names are the names assigned to variables which contain values.\n They are helpful to remember why we created the variable.'''
print(a_pun)
Mnemonic variable names are the names assigned to variables which contain values. They are helpful to remember why we created the variable.