Let's code a beginner's Python BANK PROGRAM 💰

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 พ.ค. 2024
  • #python #pythonprogramming #pythontutorial
    This is an exercise do help us learn about functions in Python. Code for this program is pinned in the comments section down below.

ความคิดเห็น • 82

  • @BroCodez
    @BroCodez  หลายเดือนก่อน +53

    # Python Banking Program
    def show_balance(balance):
    print("*********************")
    print(f"Your balance is ${balance:.2f}")
    print("*********************")
    def deposit():
    print("*********************")
    amount = float(input("Enter an amount to be deposited: "))
    print("*********************")
    if amount < 0:
    print("*********************")
    print("That's not a valid amount")
    print("*********************")
    return 0
    else:
    return amount
    def withdraw(balance):
    print("*********************")
    amount = float(input("Enter amount to be withdrawn: "))
    print("*********************")
    if amount > balance:
    print("*********************")
    print("Insufficient funds")
    print("*********************")
    return 0
    elif amount < 0:
    print("*********************")
    print("Amount must be greater than 0")
    print("*********************")
    return 0
    else:
    return amount
    def main():
    balance = 0
    is_running = True
    while is_running:
    print("*********************")
    print(" Banking Program ")
    print("*********************")
    print("1.Show Balance")
    print("2.Deposit")
    print("3.Withdraw")
    print("4.Exit")
    print("*********************")
    choice = input("Enter your choice (1-4): ")
    if choice == '1':
    show_balance(balance)
    elif choice == '2':
    balance += deposit()
    elif choice == '3':
    balance -= withdraw(balance)
    elif choice == '4':
    is_running = False
    else:
    print("*********************")
    print("That is not a valid choice")
    print("*********************")
    print("*********************")
    print("Thank you! Have a nice day!")
    print("*********************")
    if ___name___ == '__main__':
    main()

    • @user-ep2oc1bx3n
      @user-ep2oc1bx3n หลายเดือนก่อน

      how about stopwatch program

    • @Foggydew931
      @Foggydew931 21 วันที่ผ่านมา +1

      Thanks, this is great content for learning.

  • @cybericanthecoder
    @cybericanthecoder 26 วันที่ผ่านมา +4

    Wow! Amazing little course. Loved it! Please make more like this, I'm a beginner, so I would appreciate it. Your content and channel are awesome! Looking forward to a another mini course. You Rock!

  • @someMF_XD
    @someMF_XD หลายเดือนก่อน +7

    I'm glad Bro posted another great video !

  • @robertcabuto3284
    @robertcabuto3284 หลายเดือนก่อน +9

    I wish my bank's website was like that - just the basics - without so many ads.

  • @Deondree
    @Deondree 29 วันที่ผ่านมา +12

    Bro you need to give a tutorial on api’s I need help with it and there’s no other guy that can explain stuff like you do

  • @paraglide01
    @paraglide01 28 วันที่ผ่านมา +1

    Thanks man great beginner project, keep em coming.

  • @avtandil5433
    @avtandil5433 หลายเดือนก่อน +2

    Thank you for your job Bro!

  • @3549119
    @3549119 28 วันที่ผ่านมา +1

    too much value in this channel bro...
    i 'm from brazil, i am turn into a very big fa and new student member.
    thanks for all this knowledge for FREE! Have no words ..

  • @EpicZeus
    @EpicZeus หลายเดือนก่อน +51

    Man this in java would have been like 200 lines lmao

    • @aguyontheinternet1
      @aguyontheinternet1 29 วันที่ผ่านมา

      86 Lines total.
      (compared to 71 in python)
      55 Lines if you take a minute to "optimize it for space"
      (remove whitespaces and some repeated print statements)
      Could 100% be brought down even further by more optimization
      ~~~~~~~~~~~~~~~~~~~
      import java.util.Scanner;
      class Bank {

      static Scanner scan = new Scanner(System.in);

      public static void showBalance(float balance) {
      System.out.println("*********************");
      System.out.println("Your balance is $" + String.format("%.2f", balance));
      System.out.println("*********************");
      }

      public static float deposit() {
      System.out.println("*********************");
      System.out.println("Enter an amount to be deposited: ");
      float amount = Float.parseFloat(scan.nextLine());
      System.out.println("*********************");

      if (amount < 0) {
      System.out.println("*********************");
      System.out.println("That's not a valid amount");
      System.out.println("*********************");
      return 0;
      }
      return amount;
      }
      public static float withdraw(float balance) {
      System.out.println("*********************");
      System.out.println("Enter an amount to be withdrawn: ");
      float amount = Float.parseFloat(scan.nextLine());
      System.out.println("*********************");

      if (amount > balance) {
      System.out.println("*********************");
      System.out.println("Insufficient funds");
      System.out.println("*********************");
      return 0;
      }
      else if (amount < 0) {
      System.out.println("*********************");
      System.out.println("Amount must be greater than 0");
      System.out.println("*********************");
      return 0;
      }
      return amount;
      }

      public static void main(String[] args) {
      float balance = 0;
      boolean running = true;

      while (running) {
      System.out.println("*********************");
      System.out.println(" Banking Program ");
      System.out.println("*********************");
      System.out.println("1. Show Balance");
      System.out.println("2. Deposit");
      System.out.println("3. Withdraw");
      System.out.println("4. Exit");
      System.out.println("Enter your choice (1-4): ");
      String choice = scan.nextLine();

      if (choice.equals("1")) {
      Bank.showBalance(balance);
      }
      else if (choice.equals("2")) {
      balance += Bank.deposit();
      }
      else if (choice.equals("3")) {
      balance -= Bank.withdraw(balance);
      }
      else if (choice.equals("4")) {
      running = false;
      }
      else {
      System.out.println("*********************");
      System.out.println("That is not a valid choice");
      System.out.println("*********************");
      }
      }
      System.out.println("*********************");
      System.out.println("Thank you! Have a nice day!");
      System.out.println("*********************");
      }
      }

    • @cleevensluxama1242
      @cleevensluxama1242 29 วันที่ผ่านมา +10

      in Java it will run faster lmao

    • @jjgg2627
      @jjgg2627 26 วันที่ผ่านมา

      @@cleevensluxama1242By a few secs smh.

    • @namelessbrown
      @namelessbrown 25 วันที่ผ่านมา

      ​@@cleevensluxama1242For this program, it doesn't matter how fast. Humans wouldn't even recognize the difference.

    • @user-yi4ts3tr7w
      @user-yi4ts3tr7w 22 วันที่ผ่านมา

      ​@@cleevensluxama1242with faster and stupid errors

  • @francismannion7075
    @francismannion7075 22 วันที่ผ่านมา

    Thank you for a very interesting lesson.

  • @bhargavram4027
    @bhargavram4027 หลายเดือนก่อน

    welcome back chad! Missing you sooo much

  • @lukchem
    @lukchem 21 วันที่ผ่านมา +2

    I personally would add an try except around the inputs so the program doesn’t crash when the user types a String instead of a number in the input.

  • @being5033
    @being5033 3 วันที่ผ่านมา

    thanks. appreciate a lot!

  • @adventureDad1976
    @adventureDad1976 6 วันที่ผ่านมา

    Great job!!

  • @GfoxSim
    @GfoxSim 26 วันที่ผ่านมา

    WOW, great Python project. Could you please cover Unit Testing in one of the videos, perhaps for this specific project. Unit Testing makes it easier to test projects and speeds up the development process. If you've already covered it, please link me to the video.

  • @Om-jo8eu
    @Om-jo8eu หลายเดือนก่อน +1

    Thanks Bro!

  • @DANNYEL20122
    @DANNYEL20122 24 วันที่ผ่านมา

    I love your channel

  • @jordan5652
    @jordan5652 หลายเดือนก่อน +3

    can you go over a more modern gui for python please when you get time.

  • @DeejayRobert
    @DeejayRobert หลายเดือนก่อน +1

    Bro did the thing.

  • @attohval
    @attohval 26 วันที่ผ่านมา

    Thank you so much.
    Please can you do a video for GUI on Python?

  • @ghostloggs
    @ghostloggs 29 วันที่ผ่านมา

    Thanks man

  • @mohamedcoufi9873
    @mohamedcoufi9873 5 วันที่ผ่านมา

    Simple n easy thank you

  • @leonaise7546
    @leonaise7546 24 วันที่ผ่านมา

    Can you do a lesson on modules & packages?

  • @nialld2638
    @nialld2638 17 วันที่ผ่านมา

    Your videos are brilliant, they have been a great help. How would a person get this up onto their website as in how would yiu deploy it for an end user?

  • @marcinzale
    @marcinzale 27 วันที่ผ่านมา +3

    Please record such a video but with datya saving function to e.g. SQLlite, Firebase or at least a file. Now when you close the program, the data is lost. It will be more useful and close to real life. Anyway, thanks.

  • @kedarppopuri2776
    @kedarppopuri2776 หลายเดือนก่อน +1

    Bro love you 💖.

  • @pramodhkumar8771
    @pramodhkumar8771 หลายเดือนก่อน +1

    Thanks bro. Can you start tutorial on Golang .

  • @tentimesful
    @tentimesful 25 วันที่ผ่านมา

    lol this is first year of programming did in in java without no knowledge in programmihng. but my teacher told me to use more methods or he wont help me if it didnt works as my program so complicated... but succeeded though for the class lol... but eventually i learned if you methodize everything then you can edit add or fix very fast.... believe me you dont want to read and update a code that is very big without methods with meaning... visual studio made it cool though you can select a code and say methodize and it selects the variables needed for that method and methodize it with the code you selected, very handy

  • @user-vs9dk9bw3v
    @user-vs9dk9bw3v หลายเดือนก่อน +1

    Hey bro any thoughts about making videos on backend development soon?

  • @Franck-kb7np
    @Franck-kb7np 24 วันที่ผ่านมา

    Vraiment un Super Bro👍

  • @maathmatics
    @maathmatics 21 วันที่ผ่านมา

    Great

  • @amitkumarverma369
    @amitkumarverma369 หลายเดือนก่อน

    Bro can do some tutorial on financial modelling with python

  • @unexplainablefish52
    @unexplainablefish52 22 วันที่ผ่านมา

    That negative money 420.69 got me rollin hahaha

  • @daytodaylocal1398
    @daytodaylocal1398 24 วันที่ผ่านมา

    Wao its great

  • @revanthreddy790
    @revanthreddy790 28 วันที่ผ่านมา

    hey can you follow with a video adding more python functionality such as using some bank api to send notifications of bank balance (like emails) everyday so we are aware on a daily basis of what our balance is and how much we spent in the day?

  • @user-yl4wy3bp1e
    @user-yl4wy3bp1e 3 วันที่ผ่านมา

    Wow

  • @user-ir5sl3so8d
    @user-ir5sl3so8d 29 วันที่ผ่านมา

    Hey bro!!! can you post a video on ML and AI

  • @technicalswag3925
    @technicalswag3925 25 วันที่ผ่านมา

    Sir please continue and complete the react course

  • @quangquyennguyen9390
    @quangquyennguyen9390 หลายเดือนก่อน

    You have a plan for Go or typescript, Bro?

  • @Norro_o
    @Norro_o 23 วันที่ผ่านมา

    pls make a video about explaining grid in css🙏🙏

  • @DivyanshuJain-nw3ts
    @DivyanshuJain-nw3ts 28 วันที่ผ่านมา

    Plz make a Django Full course🙏

  • @chandrasekarkrishnasamy7197
    @chandrasekarkrishnasamy7197 20 วันที่ผ่านมา

    Hi, I am 57 years old. I run my first successful code because of you ❤

  • @astra8538
    @astra8538 20 วันที่ผ่านมา

    Would have been useful for the computer science project I had 7 months ago 😂

  • @KenStackTechnologies
    @KenStackTechnologies หลายเดือนก่อน

    Its working. Thank u

    • @Nishanth_S
      @Nishanth_S 22 วันที่ผ่านมา

      what 😂, who are you 😂😂 🃏
      Seems like you are here for your intership project or final year project. Just learn the concept bro. don't copy the code 🃏

    • @_Aronix_
      @_Aronix_ 7 วันที่ผ่านมา

      hey the majority of python developers. you speak for the majority of programmers? wow he should have known!​@@Nishanth_S

  • @whislevarshan3752
    @whislevarshan3752 14 วันที่ผ่านมา

    00:01 Creating a simple banking program using Python.
    01:31 Creating a bank program and taking user input for banking options.
    03:36 Handle invalid input with else statements
    05:17 Creating functions to handle balance display and deposit.
    07:17 Updating the deposit function to handle negative deposits and returning a valid amount
    09:15 Validate user input and handle withdrawal process
    11:15 Enclosing the main portion of code within a function for better readability and maintainability.
    12:47 Pass balance to withdraw and show functions

  • @kedarppopuri2776
    @kedarppopuri2776 หลายเดือนก่อน

    AND Please Conside doing a django Tutorial man.

  • @ProfShibe
    @ProfShibe หลายเดือนก่อน

    yippeeeee

  • @VishwanathK-mv6gj
    @VishwanathK-mv6gj หลายเดือนก่อน

    Hi bro code , can you teach about database in python

  • @VincentFerrara-zp3gc
    @VincentFerrara-zp3gc 25 วันที่ผ่านมา

    What code editor do you use?

    • @maushgw
      @maushgw 21 วันที่ผ่านมา

      This is PyCharm

  • @Roblonile
    @Roblonile 29 วันที่ผ่านมา

    Is it possible you nest multiple functions into one function like less i made a function called bank function could put the these functions under one function

    • @johnstephens2412
      @johnstephens2412 25 วันที่ผ่านมา

      A class is better

    • @Roblonile
      @Roblonile 25 วันที่ผ่านมา

      @@johnstephens2412 thx ill go learn classes

  • @TheSkarabeush
    @TheSkarabeush 24 วันที่ผ่านมา

    Which banking app or cash machine will let you withdraw negative amount???

  • @SabonaMarara
    @SabonaMarara หลายเดือนก่อน

    thanks bro code . how to connect mongodb ?

  • @ideology8323
    @ideology8323 หลายเดือนก่อน

    Bro I don't know nodeJs, pls help me

  • @RocketWR
    @RocketWR หลายเดือนก่อน

    hi :)

  • @razor20san
    @razor20san หลายเดือนก่อน

    1.Show nice blue

  • @Sav2Swindle
    @Sav2Swindle 26 วันที่ผ่านมา

    pls type hinting 4 python

  • @mr.blebberson4439
    @mr.blebberson4439 24 วันที่ผ่านมา

    it keeps saying that the variable "Balance" is undefined...1
    edit: and the else is also having problems. on line 16

  • @user-kh5tt7qz6r
    @user-kh5tt7qz6r 29 วันที่ผ่านมา

    hi bro please of you see my comment answer me : did you know how can i write a leveling ? like RPG leveling for ranking the users? such as to day trend in telegram crypto bots based on tap mining? please if any one know ho to make a leveling system answer me

  • @shortthink.
    @shortthink. 2 วันที่ผ่านมา

    Ledgen

  • @dfytq
    @dfytq 7 วันที่ผ่านมา

    Dear Beginers,
    Bank will never allow python for their system. If you want to learn that's okay. But don't even imagine bank will hire you to write python code for them.

  • @noob_op8828
    @noob_op8828 หลายเดือนก่อน

    H

  • @VincentFerrara-zp3gc
    @VincentFerrara-zp3gc 25 วันที่ผ่านมา

    What code editor do you use?

    • @amogus7_8
      @amogus7_8 25 วันที่ผ่านมา +1

      pycharm