Mini Project in Python | Python for Beginners |

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 พ.ย. 2024
  • Apply for LIVE 45 Days of Python (AI Oriented) Batch - codingwithsaga...
    Phone Book Project - docs.google.co...
    Join My 5-Day LIVE Python Workshop👇
    codingwithsaga...
    Get 700+ Ready-made Projects Code👇
    codingwithsaga...
    🔑 Access the Python Programming for Beginner Series
    1- Introduction to Python - • What is Python | Pytho...
    2- Comments in Python - • Comments In Python | P...
    3- Print( ) in Python - • Print() function in Py...
    4- Variables in Python - • Variables in Python | ...
    5- Data-types in Python - • Data-types In Python |...
    6- String, List & Tuple In Python - • Part-2 String, List & ...
    7- Dictionary In Python - • Dictionary in Python |...
    8- Input function in Python - • input ( ) function in ...
    9- String Manipulation In Python - • Master String Manipula...
    10 - Operators In Python Part-1 - • Operators In Python | ...
    11- Operators In Python Part-2 • Operators In Python | ...
    12- Conditional Statements In Python - • Conditional Statements...
    🔑 Access the Python Project for Beginner Series:
    1- Image Slideshow Project - • Build a Python Image S...
    2- QR Code Generator to Accept Payment - • Accept Payments with P...
    3- Text Editor App - • Build a Text Editor Ap...
    4- Automate your Task - • Goodbye Manual Search,...
    5- Create a Digital Clock - • Build a Digital Clock ...
    6- Tic-Tac-Toe Game - • Tic Tac Toe Game In Py...
    7- Rock Paper Scissor - • Rock Paper Scissor Gam...
    8- Rent Calculator App - • Rent calculator in pyt...
    Connect with us:
    Instagram - / codingwithsagar
    Telegram - telegram.me/sa...
    TH-cam - / @codingwithsagarcw

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

  • @avinashparchake7935
    @avinashparchake7935 6 หลายเดือนก่อน +75

    it was nice.
    i made same but by using while loop
    menu = {
    'pizza': 60,
    'Pasta': 40,
    'Burger': 60,
    'salad': 70,
    'coffee': 80,
    }
    print("Welcome to Python Restaurant")
    print("pizza: 60 Rs
    Pasta: 40 Rs
    Burger: 60 Rs
    salad: 70 Rs
    coffee: 80 Rs")
    order_total = 0
    while True:
    item = input("Enter the item you want to order: ")
    if item in menu:
    order_total += menu[item]
    print(f"Your item {item} has been added to your order")
    else:
    print("Sorry, we don't have that item on the menu")
    another_order = input("Do you want to add another item? (yes/no): ")
    if another_order.lower() != 'yes':
    break
    print(f"The total amount to pay is {order_total} Rs")

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

      I was also going to suggest the same

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

      If "another_order" is yes then what will happen ??

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

      @@gyanaranjansahoo6927 Then the while loop will continue running

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

      @@marsbgmi1391 no dear ! "Break" will outside the loop .
      There will be error

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

      @@gyanaranjansahoo6927 there is a condition given in a code ... If " another_order" is not equal to 'yes' .. then only it will break from loop

  • @shihabsm157
    @shihabsm157 4 หลายเดือนก่อน +10

    menu = {
    'Pizza': 120,
    'Burger': 80,
    'Salad': 40,
    'Coffe': 25,
    'Sihab': 0.2,
    }
    print("Welcome to our Resturant, Here is our menu")
    print('')
    print("Pizza: 120
    Burger: 80
    Salad: 40
    Coffe: 25")
    Order1 = input("What do you want to order? : ")
    print("Your bill is: ", menu[Order1])
    Order2 = input("Do you want to order more? : ")
    if(Order1 != "Coffe" and Order2 == "No"):
    print("Your total bill is ", menu[Order1] )

    elif(Order1 == "Coffe" and Order2 == "No"):
    print("Sorry sir, You Cant order just a coffe")
    print("Thank You")
    else:
    total_bill = menu[Order1]+menu[Order2]
    Coupon = (input("Do you have a coupon Code, if yes then enter it? :"))
    if(Coupon == "Sihab"):
    disc_value = total_bill * menu[Coupon]
    print("Your bill after 20% Discount: ", total_bill - disc_value)
    else:
    print("Your total bill is: ", menu[Order1]+menu[Order2])

    print("Thank you for ordering")
    this is my first project....thanks a lot

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

    Thanks Bro!
    I'm new here, and love to watch Your practical video with detailed and step by step explanation. Thanks again💖

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

    Bhai I really feel sad after looking views on this video, you are brilliant but why people don't come here

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

      Bhai vahi tou same

    • @GouravDas-m5c
      @GouravDas-m5c 7 หลายเดือนก่อน +9

      Baki Sab nude reel dekhne me busy he 😅

    • @Shares4you-v3z
      @Shares4you-v3z 5 หลายเดือนก่อน +2

      Right mai bhi tahel tahel te pohoch gaya yahan 😂

  • @Arise-z4f
    @Arise-z4f หลายเดือนก่อน +2

    menu = {
    "pizza":120,
    "burger": 30,
    "coffee":10,
    "chowmein":30,
    "maggie":40,
    "dosa": 60,
    }
    a = input("Hello, sir
    What Help do you want?
    ")
    def order():
    total_order = 0
    if a == "order":
    b = input("What would you like to order?
    ")
    if b in menu:
    total_order += menu[b]
    print(f"{b} has been added to your list")
    else:
    print("We dont have that item sir")

    c = input("Want Anything else?
    ")
    if c == 'yes':
    d = input("What do you want?
    ")
    if d in menu:
    total_order += menu[d]
    print(f"{d} has been added to your list")
    print(f"your Total bill is {total_order}")
    else:
    print("We dont have that sir")
    elif c == 'no':
    print(f"Your total bill is {total_order}")
    if total_order == 0:
    print("Must buy something whenever you visit next time")
    elif a == "list":
    print("___ARISE RESTU MENU___")
    print("1. pizza - 120₹
    2. burger - 30₹
    3. coffee - 10₹
    3. chowmein - 30₹
    4. maggie - 40₹
    5. dosa - 60₹")
    order()

  • @abhishekchauhan263
    @abhishekchauhan263 6 หลายเดือนก่อน +50

    No need for this background music. You can do more low this bgm.

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

    Bade bhaiya bhut acha explain krte ho aap such mai bhut hi jaadaaaaaaaaaaaaaaaaaaaaaaaaa accha

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

      Thanks bhai aise hi padhte rho

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

      ​​@@codingwithsagarcw Your explanation is better than code with hurry
      Please makes like this types of videos ❤ |

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

      English please

  • @FlashFacts.07
    @FlashFacts.07 หลายเดือนก่อน +5

    menu = {
    "Pizza":70,
    "Pasta":50,
    "Burger":30,
    "Salad":30,
    "Coffee":60
    }
    print("Hello Sir")
    print("Welcome to our restaurant")
    print("This is our MENU")
    print("Pizza: 70/-
    Pasta: 50/-
    Burger: 30/-
    Salad: 30/-
    Coffee: 60/-")
    order_total = 0
    item_1 = input("Enter an item to order: ").capitalize()
    if item_1 in menu:
    order_total += menu[item_1]
    print(f"{item_1} has been added")
    else:
    print("Sorry! That's not availale")
    another_item = input("Do you want Anything Else? (Yes/No):").lower()
    if another_item in "yes" or "no":
    if another_item == 'yes':
    item_2 = input("What would you like to order next?: ").capitalize()
    if item_2 in menu:
    order_total += menu[item_2]
    print(f"{item_2} has been added")
    print(f"Your total bill is Rs {order_total}")
    else:
    print("Sorry! that item is not unavailable")
    elif another_item == 'no':
    print(f"Great! You ordered a {item_1}")
    print(f"Your total bill is Rs {order_total}")
    else:
    print("Sorry! That's not a valid response")

    • @tanulupadhyay1802
      @tanulupadhyay1802 19 วันที่ผ่านมา

      Bro could u tell me in which webiste or software , I can make this project and save it

    • @FlashFacts.07
      @FlashFacts.07 19 วันที่ผ่านมา

      @@tanulupadhyay1802 You can fo it in any IDE means software like VS code and pycharm

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

    I have started exploring your channel because of more and more projects you have uploaded ...it's good to keep it more practical then theoretical...❤

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

    TBH bhai
    things I was searching since long you made that
    love your way of explaining things 🙏

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

    It's awesome bro. Pls make some more simple python mini project and make a playlist of this kind of thinks...

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

    In My 12 th i had already done these project already now i am working on web development with python And i am sure i will learn more and I will do something for my country 🇮🇳 In technology and department of computer science ❤

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

      Brother can u tell me which videos u watched in the beginning of ur programming

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

      @@majedkhan2094 which programming language you want to learn python?
      If python
      Start watching basics 10 to 15 hours complete course available on TH-cam then start practicing question because doing question can teach you a lot after start coding..

    • @avi.zworld
      @avi.zworld 2 หลายเดือนก่อน

      @@majedkhan2094 bhai pta chle to mujhe bhi btaio

  • @GAUTAMKUMAR-dl3id
    @GAUTAMKUMAR-dl3id หลายเดือนก่อน

    This is really a very helpful video for the freshers, who want to know how to make a unique project by themselves.🙏🙏🙏🙏🙏

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

    Why Only 343 Views He Deserve More..

  • @LikhonMia576
    @LikhonMia576 22 วันที่ผ่านมา +1

    # Define the menu of restaurant
    menu = {
    'pizza': 60,
    'Pasta': 40,
    'Burger': 60,
    'salad': 70,
    'coffee': 80,
    }
    # Greet the user
    print("Welcome to Python Restaurant")
    print("pizza: 60 Rs
    Pasta: 40 Rs
    Burger: 60 Rs
    salad: 70 Rs
    coffee: 80 Rs")
    order_total = 0
    # Start the ordering process
    while True:
    item = input("Enter the name of the item you want to order: ").lower() # Convert to lowercase for consistency
    if item in menu:
    order_total += menu[item] # Add the price of the ordered item to the total
    print(f"Your item {item} has been added to your order.")
    else:
    print(f"Sorry, {item} is not available yet!")
    # Ask if the user wants to add another item
    another_order = input("Do you want to add another item? (yes/no): ").lower()
    if another_order != 'yes':
    break # Exit the loop if the user doesn't want to order more items
    # Print the total amount to pay
    print(f"The total amount to pay is {order_total} Rs")

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

    Bhai please series ko continue rakhna ❤

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

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

    Thanks for the phonebook project...

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

    Bro don't run music in the background it creates a lot of disturbance but your explanation is awesome Fully understandable

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

    This will certainly boost the confidence of beginners.

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

    # Define the menu of the restaurant
    menu = {
    "pizza": 80,
    "burger": 50,
    "fries": 60,
    "coke": 30,
    "water": 40
    }
    # Greet the customer
    print("Welcome to the restaurant!
    ")
    print("Would you like to have:")
    for item, price in menu.items():
    print(f"{item}: Rs{price}")
    # Initialize total bill
    total_food = 0
    # Ask for the first item
    while True:
    item = input("
    What would you like to order (or type 'done' to finish)? ").lower()
    if item == "done":
    break
    if item in menu:
    total_food += menu[item]
    print(f"You have selected {item}.")
    else:
    print(f"Sorry, {item} is not available in the restaurant.")
    # Display the total bill
    print(f"
    Your total bill is Rs{total_food}. Enjoy your meal!")
    this is alternative for this code 😃😃

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

      I can do this in c

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

      Bro code dena toh c ka.​@@FCS_sanin

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

    Really nice project made the phone book completely myself it was fun learnt alot, very nice channel

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

    excellent ! Nice explanation of line by line code.. make more videos of project

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

    my first project of python . I am feeling very joyful, Sir Thank you so muchh

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

    I made sure to keep asking unless the user enters 'no'/'n', and used for loop
    menu = {
    'Pizza':40,
    'Pasta':50,
    'Burger':60,
    'Salad':70,
    'Coffee':80
    }
    total_cost = 0
    print("Welcome to our resturant, Here's the menu
    ")
    for k,v in menu.items():
    print(f'{k}: Rs{v}')
    order = input('
    Enter your first item you want to order: ').strip().capitalize()
    while order not in menu.keys():
    print("Ordered item isn't available")
    for k,v in menu.items():
    print(f'{k}: Rs{v}')
    order = input('
    Enter your first item you want to order: ').strip().capitalize()
    total_cost += menu[order]
    # The while True loop ensures the program keeps asking if the user wants to order something else until the user enters no.
    while True:
    choice = input('Anything else, you wanna order? (yes/no) : ').strip().lower()
    if choice in ['y','yes']:
    another_order = input('enter the second item: ').strip().capitalize()
    while another_order not in menu.keys():
    print('
    wrong input! choose from the below given options only.')
    for k,v in menu.items():
    print(f'{k}: Rs{v}')
    another_order = input('
    enter the second item: ').strip().capitalize()
    total_cost += menu[another_order]
    print(f'
    Your total cost: Rs{total_cost}')
    elif choice in ['n','no']:
    print(f'
    Your total cost: Rs{total_cost}
    Thank You for coming!')
    break # Exit the loop and program
    else:
    print('Invalid input! Try again.
    ')

  • @andamanminiv-logs
    @andamanminiv-logs หลายเดือนก่อน +2

    Thank you so much sir ❤🙏🙏
    Background music 😢 please skip background music

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

    Please Keep continue
    You Understand Very well!!

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

    Thanks for you mini project is very helpful for my begginer python programming skill👏👏

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

      If u done that project can u share it with me?

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

    Very simple n sorted thank u 🙏

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

    Object-oriented programming python,java,c++ languages k wo topics bataye jinke concepts ek professional software development engineer ko yaad and pata hone must ho

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

    Best tutorial but no need to add background music it irritates .

  • @privategaming5553
    @privategaming5553 2 วันที่ผ่านมา +1

    Sirf do hi bar order place ho skta hai aise to.
    Ek baar me order place karna ha to like. Pasta , pizza and coffe.
    Wo bhi possible nhi.

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

    Bahut easily understand your video 😊

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

    Sir , please tell me...Which software ur used fr this python? And ..for practice code Which software is best

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

    Nice explanation of line by line code ! *I request you to make more videos like this plz*

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

    good project according to a beginner

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

    Thank you , This video is very helpful for beginners for those who have completed python basic tutorials....

    • @NowEnd-le5ig
      @NowEnd-le5ig 4 หลายเดือนก่อน

      code with harry wala

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

    Bhai thankyou kuch seekhne ko mila❤

  • @BgmiSaurabh-qb7te
    @BgmiSaurabh-qb7te 6 หลายเดือนก่อน +1

    Bro Don't Loose Hope Your Content Is very impressive❤

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

    bro make some more projects like this. This is very helpful for me

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

    Items ki quantity ka bhi program btao

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

    ❤❤❤ well done

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

    Bhai you are jem ... Nice video 😊

  • @UjjwalSemwal-xq6os
    @UjjwalSemwal-xq6os 6 หลายเดือนก่อน +1

    Sir ek data analysist ki bhi Playlist bana do

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

    SHANDAAAAR❤

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

    Awesome explanation...next part please...

  • @shilpikanojia-f1o
    @shilpikanojia-f1o 3 หลายเดือนก่อน

    Amazing....
    my first project and you explained it very well.
    Thanks a lot Sagar

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

    Bhai tu hi asli programeer

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

    Use for loop to do item 1 to minimize work

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

    In which terminal you are running this project?

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

    Thanks brother your video is very informative.

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

    Both hard sir 💪💪

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

    nicely explained...thankyou &can you plz keep low background music

  • @HISTORYOFHEROS-r1d
    @HISTORYOFHEROS-r1d 2 หลายเดือนก่อน

    Bhi ihs tarah k aur b projects banaya kro please bhi ❤

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

    Please make video on inventory management project

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

    Thanks bro i have made it , your earned a subscriber!!! You are good at making peoples understand step by step, Keep up the good work

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

    Nice project simple and clear 😊

  • @Rockstar2010-lc6bh
    @Rockstar2010-lc6bh 5 หลายเดือนก่อน

    Bhai it was fantastic 😻😻
    This way if you teach then any degree holder (example:me only)can understand easily and where to apply when to apply everything is easily doable 😃❤
    And pls continue 100 days of coding till entire course using like these kind projects as example
    Then it's useful for everyone 😢😢😢
    Please brother 🙏❤❤❤

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

    Your videos are awesome 🔥🔥🔥🔥🔥🔥

  • @bisht_5
    @bisht_5 4 วันที่ผ่านมา

    bro isme ek step ye bhi hona chahiye ki customer ki jaise 2 coffee chahiye toh ??

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

    Thanks for your guidance i make the same using tkinter 👍😃💞

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

    Thank you for the give us great content but please don't use background sound if you are using it so low the background sound effects

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

    Sir ji ❤❤❤❤❤❤❤❤ you are very smart 🤓🤓🤓

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

    Thanks man,
    this was very easy and straight forward...

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

    आपने बहुत अच्छा समझाया
    लेकिन बैकग्राउंड म्यूजिक ने परेशान कर दिया

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

    Very good explanation

  • @k-edits-e1
    @k-edits-e1 3 หลายเดือนก่อน

    Bro 🤝♥️Keep shine ♥️💎

  • @rajendrakumar-el2nb
    @rajendrakumar-el2nb 3 หลายเดือนก่อน

    Can you please upload a full python course

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

    Daily video daalo bhai

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

    Python ka konsa version use kyea hay apnay

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

    you can add more logics my taking input in numbers and for exit 0

  • @-NarutoUzumaki334
    @-NarutoUzumaki334 2 หลายเดือนก่อน

    Nice Video Bro 👌

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

    brother python ka simple budget trackers ka project karaiyana by GUI

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

    Good video for beginners ❤

  • @shahidmalik6107
    @shahidmalik6107 9 วันที่ผ่านมา

    @codingwithsagarcw what if i want to print menu by printing dictionary items on separate lines rather than using single print()

  • @faatimaiqbaal
    @faatimaiqbaal 4 วันที่ผ่านมา

    Please make heads tail game like we used to play in our childhood from number like 1 to 6 please please

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

    Its similar to Networkchuck video but it has additional code and improvements to it

  • @SenmaBhavesh-v7d
    @SenmaBhavesh-v7d 3 หลายเดือนก่อน

    It's a so interesting sir 😊❤

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

    CSS p bh vdeo bnai Bhai

  • @priyanshisahu7938
    @priyanshisahu7938 16 วันที่ผ่านมา

    Please sir play list me sabhi mini projects add kardijiey nahi mil rahe he

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

    Helpful really awesome ❤😊

  • @RimshaShahzadi-o4d
    @RimshaShahzadi-o4d 19 วันที่ผ่านมา

    AOA BHAI,
    Can you give me your complete course playlist of python

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

    Bhaiya "Yes" karne ke bad aage another item kaise show kare 🎉🎉❤❤

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

    Bhai loop lagaya to nahi chalta kya? Because customer srif dohi order kar para es code mai when customer want multiple order tab kya use kare ?

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

    Very nice project bhaiya

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

    This is really an excellent channel on Python like "techie talkee"

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

    Thank you so much sagar 🙏🙏

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

    bhai ye projects hum resume me laga skte ha?

  • @7lyrics302
    @7lyrics302 3 หลายเดือนก่อน +1

    This will be much easier if you code in C language

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

    Thank you bhya bht Easley apne bta diya Thanku so much bhiya

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

    Bhai incredible bhai ❤❤❤❤❤

  • @sr_0.
    @sr_0. 6 หลายเดือนก่อน

    Bhai daily video dalo please Bhai our framework ki video bhi dalo please Bhai

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

    Good video. Really helpful and useful for beginners in python

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

    Great job

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

    #codingwithpragya

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

    2nd part kedr hy es ka???

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

    2nd part of this project link plz???

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

    Very good video , lovely nice to watch

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

    Waiting for new python video.

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

    School par projects banao bhai

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

    easy pizzy thanks for practise