You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A programmer, a client of some bank, writes a program that manages his account. As part of the program, he wants to define two variables, for the following information:
His account number
The amount of money in his account
For each item of information, choose a variable name that best suits it.
Guidelines
Pay attention to maintaining the conventions in the Python language.
'''
# 1:
# chose name for the account number of the programmer
# Answer: ACCOUNT_NUMBER
# 2:
# chose name for the amount of money in the account number of the programmer