Let's code a beginner Python BANKING PROGRAM 💰

Поделиться
HTML-код
  • Опубликовано: 14 ноя 2024

Комментарии • 152

  • @BroCodez
    @BroCodez  5 месяцев назад +146

    # 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()

    • @mohameddeeq-l2s
      @mohameddeeq-l2s 5 месяцев назад

      how about stopwatch program

    • @Foggydew931
      @Foggydew931 5 месяцев назад +2

      Thanks, this is great content for learning.

    • @RobloxplayzYT2010
      @RobloxplayzYT2010 3 месяца назад

      meep

    • @Black_Orb33
      @Black_Orb33 2 месяца назад

      this is amazing and very organised! 👏

    • @cocoatea57
      @cocoatea57 Месяц назад

      How do we save it in a database? Bro

  • @chandrasekarkrishnasamy7197
    @chandrasekarkrishnasamy7197 5 месяцев назад +75

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

  • @robertcabuto3284
    @robertcabuto3284 5 месяцев назад +47

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

  • @cybericanthecoder
    @cybericanthecoder 5 месяцев назад +18

    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!

  • @gam3kid
    @gam3kid Месяц назад +3

    You explained this better than the community college programming teacher. And this was free.

  • @Deondree
    @Deondree 5 месяцев назад +30

    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

  • @Black_Orb33
    @Black_Orb33 2 месяца назад +4

    you explained this really well by breaking things down and speaking slowly so thank you 😊

  • @someMF_XD
    @someMF_XD 5 месяцев назад +10

    I'm glad Bro posted another great video !

  • @sravanthinandinig6917
    @sravanthinandinig6917 Месяц назад +2

    That's great sir, please make other projects also like this

  • @whislevarshan3752
    @whislevarshan3752 5 месяцев назад +10

    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

  • @paraglide01
    @paraglide01 5 месяцев назад +4

    Thanks man great beginner project, keep em coming.

  • @MaxNewberg-r4l
    @MaxNewberg-r4l 3 месяца назад +3

    this project looks interesting already

  • @3549119
    @3549119 5 месяцев назад +2

    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 ..

  • @kapibara2440
    @kapibara2440 3 месяца назад +1

    You are a brilliant teacher 😊

  • @jordan5652
    @jordan5652 5 месяцев назад +3

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

  • @GfoxSim
    @GfoxSim 5 месяцев назад +1

    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.

  • @lordrobertclive-vc5ld
    @lordrobertclive-vc5ld 2 месяца назад

    i did the same practice in chat gpt... !!! But i did that only by using while loop
    balance = 1000
    While True:
    print('ATM MENU')
    print('1. check the balance')
    print('2.Deposite Money')
    print('3.Withdraw Money')
    print('4.exit')
    Choose = input('Choose any option from 1-4')
    if Choose == 1:
    print(f'your current bank balance is:{balance}')
    elif Choose ==2:
    add_amount = float(input('enter the amount you want to add'))
    balance += add_amount
    print(f'Now your current bank balance is: {balance}')
    elif choose ==3:
    withdraw_amount = float(input('enter the amount of money you want to withdraw: '))
    if withdraw_amount>balance:
    print("you don't have so much balance! ')
    else:
    balance -=amount
    print(f' your new balance is : {balance}')
    elif choose == 4
    print('exiting the programme')
    break

  • @adnankhan-ei5mg
    @adnankhan-ei5mg 3 месяца назад +2

    the best teacher for learning python is print"code with harry"❤❤

  • @peerlessindifference
    @peerlessindifference Месяц назад

    I needed this so badly! Thanks for sharing❤

  • @sagheerahmed5601
    @sagheerahmed5601 12 дней назад

    Finally I found the right channel for python ❤

  • @DigItSalam
    @DigItSalam 2 месяца назад +1

    Great teacher.. you make coding sooooo simple❤.... Do you have tutorial on kivy?

  • @mohamedcoufi9873
    @mohamedcoufi9873 4 месяца назад +1

    Simple n easy thank you

  • @mawhadmd
    @mawhadmd 5 месяцев назад +86

    Man this in java would have been like 200 lines lmao

    • @aguyontheinternet1
      @aguyontheinternet1 5 месяцев назад

      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 5 месяцев назад +14

      in Java it will run faster lmao

    • @jjgg2627
      @jjgg2627 5 месяцев назад

      @@cleevensluxama1242By a few secs smh.

    • @namelessbrown
      @namelessbrown 5 месяцев назад

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

    • @youtubeacc666
      @youtubeacc666 5 месяцев назад

      ​@@cleevensluxama1242with faster and stupid errors

  • @francismannion7075
    @francismannion7075 5 месяцев назад

    Thank you for a very interesting lesson.

  • @adventureDad1976
    @adventureDad1976 4 месяца назад +2

    Great job!!

  • @marcinzale
    @marcinzale 5 месяцев назад +2

    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.

  • @avtandil5433
    @avtandil5433 5 месяцев назад +2

    Thank you for your job Bro!

  • @pramodhkumar8771
    @pramodhkumar8771 5 месяцев назад +1

    Thanks bro. Can you start tutorial on Golang .

  • @leonaise7546
    @leonaise7546 5 месяцев назад

    Can you do a lesson on modules & packages?

  • @gospelmoto2833
    @gospelmoto2833 2 месяца назад

    You immediately got a new sub here...worth it. Thanks!

  • @LeeAudreyMthembu
    @LeeAudreyMthembu 3 месяца назад

    May you please give us an API Tutorial

  • @Franck-kb7np
    @Franck-kb7np 5 месяцев назад +1

    Vraiment un Super Bro👍

  • @technicalswag3925
    @technicalswag3925 5 месяцев назад

    Sir please continue and complete the react course

  • @Norro_o
    @Norro_o 5 месяцев назад

    pls make a video about explaining grid in css🙏🙏

  • @DANNYEL20122
    @DANNYEL20122 5 месяцев назад +1

    I love your channel

  • @being5033
    @being5033 4 месяца назад +1

    thanks. appreciate a lot!

  • @attohval
    @attohval 5 месяцев назад

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

  • @gunjanmali3766
    @gunjanmali3766 4 месяца назад +1

    thank you sir

  • @DivyanshuJain-nw3ts
    @DivyanshuJain-nw3ts 5 месяцев назад

    Plz make a Django Full course🙏

  • @aaa-d6i
    @aaa-d6i 2 месяца назад

    You could have made a data saving and automatic loading on end and start of the probram / exiting and starting its very easy to make

  • @kedarppopuri2776
    @kedarppopuri2776 5 месяцев назад +2

    Bro love you 💖.

  • @Fujihanabi-r1b
    @Fujihanabi-r1b 5 месяцев назад +1

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

  • @kedarppopuri2776
    @kedarppopuri2776 5 месяцев назад +1

    AND Please Conside doing a django Tutorial man.

  • @amitkumarverma369
    @amitkumarverma369 5 месяцев назад

    Bro can do some tutorial on financial modelling with python

  • @lukchem
    @lukchem 5 месяцев назад +3

    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.

    • @promiseezeala2844
      @promiseezeala2844 3 месяца назад

      There already an else statement , you don’t need try and accept, and enter a negative number it will still run when it’s not supposed to

    • @supersoniqamanyi3075
      @supersoniqamanyi3075 2 месяца назад

      @@promiseezeala2844 That may not handle a KeyError, ValueError exceptions though

  • @SurafelTezera-d7o
    @SurafelTezera-d7o 5 месяцев назад

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

  • @lindadelalifiasam5878
    @lindadelalifiasam5878 4 месяца назад

    😊😊😊love this lesson

  • @MhlengiMadlala-w9n
    @MhlengiMadlala-w9n 4 месяца назад +1

    Wow

  • @sarimbinwaseem
    @sarimbinwaseem 4 месяца назад +6

    Good video for beginners..
    Just giving some suggestions if someone is interested.
    1. Use match case for choices. It looks pretty and more readable.
    2. After using return in all if and elif statements, the last else is not needed. just directly return without an else.
    3. Use pylint to learn more.
    Not targeting Bro Code but getting the tips out there for anyone.

  • @MegadomeBuildersSdnBhd
    @MegadomeBuildersSdnBhd Месяц назад

    hi, tqsm for the sharing. I have a question, how do u do pytest on ths codes?

  • @brunomartins824
    @brunomartins824 28 дней назад

    great, now let's code the xfs layer 👏

  • @bhargavram4027
    @bhargavram4027 5 месяцев назад

    welcome back chad! Missing you sooo much

  • @DeejayRobert
    @DeejayRobert 5 месяцев назад +1

    Bro did the thing.

  • @VishwanathK-mv6gj
    @VishwanathK-mv6gj 5 месяцев назад

    Hi bro code , can you teach about database in python

  • @TorabekRaufov-p8x
    @TorabekRaufov-p8x Месяц назад

    bro is the best

  • @unexplainablefish52
    @unexplainablefish52 5 месяцев назад

    That negative money 420.69 got me rollin hahaha

  • @CharimelGarciasSantanas
    @CharimelGarciasSantanas 2 месяца назад

    Lo quisiera en Español este video ❤

  • @PedroRodriguez-dl5yt
    @PedroRodriguez-dl5yt 4 месяца назад

    Hey, how good to see ya

  • @nialld2638
    @nialld2638 5 месяцев назад

    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?

  • @revanthreddy790
    @revanthreddy790 5 месяцев назад

    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?

  • @LokeshPandeya
    @LokeshPandeya 3 месяца назад

    python api tutorail needed

  • @Om-jo8eu
    @Om-jo8eu 5 месяцев назад +1

    Thanks Bro!

  • @NewmanEbubechukwu
    @NewmanEbubechukwu 28 дней назад

    Let's say this program works, how can i send money from my other bank account to this bank?

  • @quangquyennguyen9390
    @quangquyennguyen9390 5 месяцев назад

    You have a plan for Go or typescript, Bro?

  • @tentimesful
    @tentimesful 5 месяцев назад

    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

  • @maathmatics
    @maathmatics 5 месяцев назад

    Great

  • @mohamedshehata4081
    @mohamedshehata4081 3 месяца назад

    #fix this code, such yhat numper = 12
    sprite.set_variable('number',0)
    for count in range("10"):
    if sprite.get_variable('number') < 11:
    v = sprite.get_variaple('number')
    sprite.set_variable('numper',v+1)
    else:
    sprite.stop_all(

  • @mr.blebberson4439
    @mr.blebberson4439 5 месяцев назад

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

  • @ghostloggs
    @ghostloggs 5 месяцев назад

    Thanks man

  • @SabonaMarara
    @SabonaMarara 5 месяцев назад

    thanks bro code . how to connect mongodb ?

  • @MEK
    @MEK 20 дней назад

    I thought your real bank website gives u api to do all these 😮

  • @astra8538
    @astra8538 5 месяцев назад

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

  • @sonatapiece
    @sonatapiece 3 месяца назад

    What IDE are you using?

  • @TheSkarabeush
    @TheSkarabeush 5 месяцев назад

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

  • @Rachels__sweets_
    @Rachels__sweets_ 3 дня назад

    What website can i use to program?

  • @KenStackTechnologies
    @KenStackTechnologies 5 месяцев назад

    Its working. Thank u

    • @Nishanth_S
      @Nishanth_S 5 месяцев назад

      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_ 4 месяца назад

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

  • @RealSyLol
    @RealSyLol 5 месяцев назад

    pls type hinting 4 python

  • @KaramzadSh
    @KaramzadSh 5 месяцев назад

    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

  • @deepmaru2002
    @deepmaru2002 3 месяца назад

    How to change color of run terminal text ??

  • @Gaza-ff
    @Gaza-ff Месяц назад

    I'm using VS STUDIO CODE but I keep getting error at the withdrawal function.
    Can you help me please 🙏🙏

  • @user-rp9iis1en6h
    @user-rp9iis1en6h 4 месяца назад

    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.

    • @jakubwiszowaty5118
      @jakubwiszowaty5118 4 месяца назад

      So what would a bank allow?

    • @user-rp9iis1en6h
      @user-rp9iis1en6h 4 месяца назад

      @@jakubwiszowaty5118 java, .net, kotlin, golang. Python for machine learning.

  • @FaradayDave-x2s
    @FaradayDave-x2s 2 месяца назад

    Perez Deborah Hall Christopher Hall Paul

  • @Gaza-ff
    @Gaza-ff 21 день назад

    My while" is_running " keep printing an infinite amount of loops 😢 need help

  • @Bacon_editsz
    @Bacon_editsz 5 месяцев назад

    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 5 месяцев назад

      A class is better

    • @Bacon_editsz
      @Bacon_editsz 5 месяцев назад

      @@johnstephens2412 thx ill go learn classes

  • @ideology8323
    @ideology8323 5 месяцев назад

    Bro I don't know nodeJs, pls help me

  • @boredgamesph4872
    @boredgamesph4872 3 месяца назад

    Why are you obsess with 420 and 69 🤔🤔

  • @ProfShibe
    @ProfShibe 5 месяцев назад

    yippeeeee

  • @abcdisxyz5929
    @abcdisxyz5929 9 дней назад

    Which software is this can anybody tell me if he knows??

  • @dylanmercergo7853
    @dylanmercergo7853 2 месяца назад

    Hello! So uh, in the first part where the while is placed, I did as you did but when run, it just keeps looping without giving options, like it just goes infinity. Help?

    • @unitnuity
      @unitnuity 2 месяца назад

      Is your True capitalized?

  • @favasmhd
    @favasmhd 3 месяца назад

    bro which app is used

  • @Mrsneaki
    @Mrsneaki 2 месяца назад

    Pls what ide is this

  • @maxmuster7003
    @maxmuster7003 24 дня назад

    Press 5 for bank run.😂

  • @afin4684
    @afin4684 2 месяца назад

    That really nice! Ty!

  • @VincentFerrara-zp3gc
    @VincentFerrara-zp3gc 5 месяцев назад

    What code editor do you use?

    • @maushgw
      @maushgw 5 месяцев назад

      This is PyCharm

  • @NadiifoCalidiiriye
    @NadiifoCalidiiriye День назад

    I'm less than 18 years old and it's not work for me because of my android phone why this wad happened

  • @shortthink.
    @shortthink. 4 месяца назад

    Ledgen

  • @Not_Chunkyvr
    @Not_Chunkyvr 2 месяца назад

    LOL to test the "not a valid option" code i put exact same thing "poo"

  • @RocketWR
    @RocketWR 5 месяцев назад

    hi :)

  • @nlremixes4009
    @nlremixes4009 5 дней назад

    You dont have one kajilion dollars? Poor you😄

  • @noob_op8828
    @noob_op8828 5 месяцев назад +1

    H