From bf1d8e2212840ef336c5e1e2c77204d5104aa7c7 Mon Sep 17 00:00:00 2001 From: Liron-Mizrahi <91504420+lironmiz@users.noreply.github.com> Date: Mon, 2 Jan 2023 09:29:28 +0200 Subject: [PATCH] Create unit2_ex2.4.1.py --- unit2_ex2.4.1.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 unit2_ex2.4.1.py diff --git a/unit2_ex2.4.1.py b/unit2_ex2.4.1.py new file mode 100644 index 0000000..3b3175a --- /dev/null +++ b/unit2_ex2.4.1.py @@ -0,0 +1,22 @@ +# ex 2.4.1 +''' +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 +# Enswer: ACCOUNT_NUMBER + +# 2: +# chose name for the amount of money in the account number of the programmer +# Enswer: amount_of_money + + +