Mini Project in Python | Python for Beginners |

  Рет қаралды 296,253

Coding With Sagar

Coding With Sagar

Күн бұрын

Пікірлер: 318
@avinashparchake7935
@avinashparchake7935 7 ай бұрын
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 7 ай бұрын
I was also going to suggest the same
@gyanaranjansahoo6927
@gyanaranjansahoo6927 6 ай бұрын
If "another_order" is yes then what will happen ??
@marsbgmi1391
@marsbgmi1391 6 ай бұрын
@@gyanaranjansahoo6927 Then the while loop will continue running
@gyanaranjansahoo6927
@gyanaranjansahoo6927 6 ай бұрын
@@marsbgmi1391 no dear ! "Break" will outside the loop . There will be error
@marsbgmi1391
@marsbgmi1391 6 ай бұрын
@@gyanaranjansahoo6927 there is a condition given in a code ... If " another_order" is not equal to 'yes' .. then only it will break from loop
@alvinrock7190
@alvinrock7190 9 ай бұрын
Thanks Bro! I'm new here, and love to watch Your practical video with detailed and step by step explanation. Thanks again💖
@shihabsm157
@shihabsm157 6 ай бұрын
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
@MeharZubair-ml7zl
@MeharZubair-ml7zl 19 күн бұрын
we can also use for loop for dictionary elements. menu ={"Pizza":40, "Pasta":50, "Fries":20, "Kabab":60, } print("Welcome to our Restraunt. ") for item,price in menu.items(): print(f"{item}: {price} RS") order_total =0; while True: item=str(input("Select your Items:")) if item in menu: order_total += menu[item] print(f"You item is selected") else: print("Selected item is not in our menu...") another_order=input("You want to add another item? (Yes/No)") if another_order.lower() != 'yes': break print(f"You have to pay a total amount of: {order_total} RS")
@The_Developer_21
@The_Developer_21 9 ай бұрын
Bhai I really feel sad after looking views on this video, you are brilliant but why people don't come here
@onlylakshyaff5296
@onlylakshyaff5296 9 ай бұрын
Bhai vahi tou same
@GouravDas-m5c
@GouravDas-m5c 9 ай бұрын
Baki Sab nude reel dekhne me busy he 😅
@Shares4you-v3z
@Shares4you-v3z 7 ай бұрын
Right mai bhi tahel tahel te pohoch gaya yahan 😂
@NazimaNazimabanu-e8s
@NazimaNazimabanu-e8s Ай бұрын
Great things are for great people not for all😊🎉
@MRJAWADBINANCIAN
@MRJAWADBINANCIAN 10 сағат бұрын
😂😂😂​@@GouravDas-m5c
@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()
@divyanshugoyal663
@divyanshugoyal663 9 ай бұрын
Bade bhaiya bhut acha explain krte ho aap such mai bhut hi jaadaaaaaaaaaaaaaaaaaaaaaaaaa accha
@codingwithsagarcw
@codingwithsagarcw 9 ай бұрын
Thanks bhai aise hi padhte rho
@Ayushontop09
@Ayushontop09 7 ай бұрын
​​@@codingwithsagarcw Your explanation is better than code with hurry Please makes like this types of videos ❤ |
@ks97626
@ks97626 2 ай бұрын
English please
@asmitaJaiswar-c9v
@asmitaJaiswar-c9v 2 күн бұрын
iss video me deatil me smjhane k liye bohot bohot shukriya😃😊🙏 mujhe samjh me b aay or acha b laga
@devesh6916
@devesh6916 9 ай бұрын
TBH bhai things I was searching since long you made that love your way of explaining things 🙏
@atharvasharma8313
@atharvasharma8313 Ай бұрын
I have made it like this :- menu = { "Pizza": 50, "Salaad": 60, "Burger" : 90, "Cofee" : 10, } order_bill = 0 while True: item = str(input("Enter your oder:")) if item in menu: order_bill = order_bill + menu[item] print("you have ordered:", item,) print(" your bill is:", order_bill, "rupees" ) else: print("Sorry we dont have that in menu") confirmation = str(input("Would you like to order something else ? (Yes/No) ")) if(confirmation == "Yes"): continue elif(confirmation == "No"): break else : print("Error you chose an option not in system. Therefore Completing your order") break print("You have to Pay : ", order_bill, "Rupees")
@FlashFacts.07
@FlashFacts.07 3 ай бұрын
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 2 ай бұрын
Bro could u tell me in which webiste or software , I can make this project and save it
@FlashFacts.07
@FlashFacts.07 2 ай бұрын
@@tanulupadhyay1802 You can fo it in any IDE means software like VS code and pycharm
@gauravkadav7620
@gauravkadav7620 7 күн бұрын
@@tanulupadhyay1802 vs code
@VK18Reacts
@VK18Reacts 4 ай бұрын
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 4 ай бұрын
Brother can u tell me which videos u watched in the beginning of ur programming
@VK18Reacts
@VK18Reacts 4 ай бұрын
@@majedkhan2094 which programming language you want to learn python? If python Start watching basics 10 to 15 hours complete course available on KZbin then start practicing question because doing question can teach you a lot after start coding..
@avi.zworld
@avi.zworld 4 ай бұрын
@@majedkhan2094 bhai pta chle to mujhe bhi btaio
@AdityaPrasad111
@AdityaPrasad111 4 ай бұрын
Really nice project made the phone book completely myself it was fun learnt alot, very nice channel
@SHADRIFAT
@SHADRIFAT 4 ай бұрын
It's awesome bro. Pls make some more simple python mini project and make a playlist of this kind of thinks...
@KumarKPandey
@KumarKPandey 4 күн бұрын
Nice project, Sagar Here is another version of this project # Prepare menu menu = { "Pizza":40, "Pasta":50, "Burger":60, "Salad":70, "Coffee":80 } # Greet customer print("Welcome to PyRestaurent!") for key, value in menu.items(): print(f"{key}: Rs.{value}.00") # Take order def takeOrder(): global order_total order_total = 0 another_order = 'Y' ordered_items = [] while(another_order == 'Y'): item = input("Enter the name of item you want to order: ") if item in menu: order_total+=menu[item] ordered_items.append(item) print(f"Your item {item} has been added to your order!") else: print(f"Ordered item {item} is not available yet!") print(f"Total order amount is Rs.{order_total}") another_order = input("Any other item for order Y/N: ") if order_total > 0: print(f"Thanks for order, Your ordered items are {str(ordered_items).replace('[','').replace(']','').replace('\'','')} and total amount is Rs.{order_total}") takeOrder() Happy coding!
@nishaanjum4901
@nishaanjum4901 4 ай бұрын
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...❤
@abhishekchauhan263
@abhishekchauhan263 7 ай бұрын
No need for this background music. You can do more low this bgm.
@anujpareek0004
@anujpareek0004 9 ай бұрын
Bhai please series ko continue rakhna ❤
@gymninjafx
@gymninjafx 9 ай бұрын
@btsinspired...4572
@btsinspired...4572 Ай бұрын
Thanku brooo hame kuch bhi nahi milra tha code mile tho run nhi hora tha soo tq ise video helpful❤
@GAUTAMKUMAR-dl3id
@GAUTAMKUMAR-dl3id 3 ай бұрын
This is really a very helpful video for the freshers, who want to know how to make a unique project by themselves.🙏🙏🙏🙏🙏
@Its__AnkitSahu
@Its__AnkitSahu 9 ай бұрын
Thanks for the phonebook project...
@fouzanqazi6885
@fouzanqazi6885 3 ай бұрын
excellent ! Nice explanation of line by line code.. make more videos of project
@atharvapapade4241
@atharvapapade4241 6 ай бұрын
Nice explanation of line by line code ! *I request you to make more videos like this plz*
@fenalchudasama_18
@fenalchudasama_18 5 ай бұрын
Please Keep continue You Understand Very well!!
@awaismubashar6826
@awaismubashar6826 4 ай бұрын
my first project of python . I am feeling very joyful, Sir Thank you so muchh
@Rockstar2010-lc6bh
@Rockstar2010-lc6bh 7 ай бұрын
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 🙏❤❤❤
@Animal_funny_short582
@Animal_funny_short582 6 ай бұрын
Thanks for you mini project is very helpful for my begginer python programming skill👏👏
@ihsanwahab7078
@ihsanwahab7078 3 ай бұрын
If u done that project can u share it with me?
@MegaRocky99
@MegaRocky99 Ай бұрын
Thanks bro ap NY boht achy sy samjhye..
@shilpikanojia-f1o
@shilpikanojia-f1o 5 ай бұрын
Amazing.... my first project and you explained it very well. Thanks a lot Sagar
@LikhonMia576
@LikhonMia576 2 ай бұрын
# 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")
@asmitaJaiswar-c9v
@asmitaJaiswar-c9v 2 күн бұрын
hello mai ak beginnre hu from python mujhe aapka project acha laga sach me kya aap program me jo brakets ( ),{ },[ ],hote h uspe ak short video bna skte hain kya pleass....🙏k kon sa braket kah per use hota k vo chij ache se yaad ho jaye
@ambikaroy1313
@ambikaroy1313 2 ай бұрын
Very simple n sorted thank u 🙏
@rpawar2525
@rpawar2525 6 ай бұрын
This will certainly boost the confidence of beginners.
@andamanminiv-logs
@andamanminiv-logs 3 ай бұрын
Thank you so much sir ❤🙏🙏 Background music 😢 please skip background music
@vikrantmitharwal6474
@vikrantmitharwal6474 2 ай бұрын
Bro don't run music in the background it creates a lot of disturbance but your explanation is awesome Fully understandable
@AbdulKarim-ms1xb
@AbdulKarim-ms1xb 10 күн бұрын
mein seekhney ki koshish kar raha hoon aur ziada knowledge nahi hey bas shouqia seekh raha hoon mein aik retired person hoon Allah aapko iemaan ata fermaey aur bht kaamyabian ata fermaey
@Chowdary130
@Chowdary130 7 ай бұрын
Thank you , This video is very helpful for beginners for those who have completed python basic tutorials....
@NowEnd-le5ig
@NowEnd-le5ig 6 ай бұрын
code with harry wala
@tejaswinikamble6198
@tejaswinikamble6198 3 ай бұрын
Bahut easily understand your video 😊
@wizardgaming6498
@wizardgaming6498 6 ай бұрын
Nice project simple and clear 😊
@manishpandey7944
@manishpandey7944 6 ай бұрын
Thanks man, this was very easy and straight forward...
@BgmiSaurabh-qb7te
@BgmiSaurabh-qb7te 8 ай бұрын
Bro Don't Loose Hope Your Content Is very impressive❤
@mohammadahmed332
@mohammadahmed332 3 ай бұрын
Thanks brother your video is very informative.
@VISUALEDITFY
@VISUALEDITFY 8 ай бұрын
# 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 7 ай бұрын
I can do this in c
@B2vlog99
@B2vlog99 7 ай бұрын
Bro code dena toh c ka.​@@FCS_sanin
@sirineelimasaride9762
@sirineelimasaride9762 3 ай бұрын
nicely explained...thankyou &can you plz keep low background music
@mohammedaadil3872
@mohammedaadil3872 6 ай бұрын
Awesome explanation...next part please...
@anmolchourasiya12
@anmolchourasiya12 4 ай бұрын
Bhai thankyou kuch seekhne ko mila❤
@vandnasharma9799
@vandnasharma9799 6 ай бұрын
Thanks for your guidance i make the same using tkinter 👍😃💞
@adityajunghare8477
@adityajunghare8477 9 ай бұрын
Bhai you are jem ... Nice video 😊
@maheshramteke2765
@maheshramteke2765 7 ай бұрын
Good video. Really helpful and useful for beginners in python
@Swati_sinha05
@Swati_sinha05 8 ай бұрын
Thank you bhya bht Easley apne bta diya Thanku so much bhiya
@MoizButt2420
@MoizButt2420 3 ай бұрын
bro make some more projects like this. This is very helpful for me
@rupakrajora
@rupakrajora 7 ай бұрын
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
@Activitieswithshruti
@Activitieswithshruti 2 ай бұрын
Items ki quantity ka bhi program btao
@kakashi3886
@kakashi3886 5 ай бұрын
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
@EditsByShaurya07
@EditsByShaurya07 9 ай бұрын
Why Only 343 Views He Deserve More..
@nikhilgowda8544
@nikhilgowda8544 4 ай бұрын
Your videos are awesome 🔥🔥🔥🔥🔥🔥
@NITESH_Kumar76
@NITESH_Kumar76 6 ай бұрын
Sir ji ❤❤❤❤❤❤❤❤ you are very smart 🤓🤓🤓
@UjjwalSemwal-xq6os
@UjjwalSemwal-xq6os 7 ай бұрын
Sir ek data analysist ki bhi Playlist bana do
@OPAyanMEHARYT
@OPAyanMEHARYT 4 ай бұрын
Use for loop to do item 1 to minimize work
@awaissaleem-n5e
@awaissaleem-n5e 28 күн бұрын
Good brother keep doing this
@SenmaBhavesh-v7d
@SenmaBhavesh-v7d 4 ай бұрын
It's a so interesting sir 😊❤
@kavitanagpal8863
@kavitanagpal8863 7 ай бұрын
Very good video , lovely nice to watch
@k-edits-e1
@k-edits-e1 5 ай бұрын
Bro 🤝♥️Keep shine ♥️💎
@Daigift
@Daigift Ай бұрын
rs mount ke bad me lagaya jata ha bhai like (20Rs) and doller mount ke pahale like ($5) just for knowledge
@umairmohiuddin6307
@umairmohiuddin6307 5 ай бұрын
you can add more logics my taking input in numbers and for exit 0
@shamalshelar3834
@shamalshelar3834 3 ай бұрын
Please make video on inventory management project
@bisht_5
@bisht_5 Ай бұрын
bro isme ek step ye bhi hona chahiye ki customer ki jaise 2 coffee chahiye toh ??
@ifthiquarahmed5200
@ifthiquarahmed5200 23 күн бұрын
Excellent💯
@VashuDevRao
@VashuDevRao 27 күн бұрын
Very nice 👍🏻 Bhai
@palakg_18
@palakg_18 7 ай бұрын
Very nice project bhaiya
@funshortscreator
@funshortscreator 6 ай бұрын
Helpful really awesome ❤😊
@anikettripathi1160
@anikettripathi1160 Ай бұрын
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. ')
@Ajyyt
@Ajyyt 6 ай бұрын
Good video for beginners ❤
@sarikachouhan7925
@sarikachouhan7925 8 ай бұрын
Tqsm Bhai ,this video is amazing😍
@rajeshwaryk2007
@rajeshwaryk2007 2 ай бұрын
Sir , please tell me...Which software ur used fr this python? And ..for practice code Which software is best
@rajeevyadav1637
@rajeevyadav1637 5 ай бұрын
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
@sanchitapahade9399
@sanchitapahade9399 6 ай бұрын
Best tutorial but no need to add background music it irritates .
@hritikRaj20
@hritikRaj20 9 ай бұрын
Bhai incredible bhai ❤❤❤❤❤
@barriramadevi2446
@barriramadevi2446 5 ай бұрын
Very good explanation
@jyotsana6094
@jyotsana6094 Ай бұрын
Very good..
@privategaming5553
@privategaming5553 Ай бұрын
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.
@typicalshorts2286
@typicalshorts2286 3 ай бұрын
Both hard sir 💪💪
@revealinfo8060
@revealinfo8060 6 ай бұрын
CSS p bh vdeo bnai Bhai
@madhabpatra5800
@madhabpatra5800 6 ай бұрын
Thank you so much sagar 🙏🙏
@Dope198
@Dope198 7 ай бұрын
Its similar to Networkchuck video but it has additional code and improvements to it
@phaneedrakumaribharadwaj2392
@phaneedrakumaribharadwaj2392 9 ай бұрын
Nice attempt lot of optimization can be donr
@shwetamehta6561
@shwetamehta6561 Ай бұрын
I want a project on blood bank.
@nirmalrawal3995
@nirmalrawal3995 9 күн бұрын
Bhai explain axa krte ho but pls background music mut dala kro
@abbaskika5460
@abbaskika5460 7 ай бұрын
Bhai, your video well explained. I just want to know why I downloaded Python . Let me know, please. thanks
@-NarutoUzumaki334
@-NarutoUzumaki334 4 ай бұрын
Nice Video Bro 👌
@ibrahimmd759
@ibrahimmd759 7 ай бұрын
Really helpful ❤❤❤
@shreyadhiman275
@shreyadhiman275 13 күн бұрын
Amazing 😊
@Hassanmujtaba74
@Hassanmujtaba74 3 ай бұрын
❤❤❤ well done
@Gungun_._verma-3
@Gungun_._verma-3 5 ай бұрын
good project according to a beginner
@intensepower9539
@intensepower9539 8 ай бұрын
Very nice explanation bhai
@SaifAli-eh8lq
@SaifAli-eh8lq 6 ай бұрын
great sir thank u soo much🤗
@codingwithsagarcw
@codingwithsagarcw 6 ай бұрын
Most welcome
@chandrasekars8904
@chandrasekars8904 6 ай бұрын
This is really an excellent channel on Python like "techie talkee"
@rajendrakumar-el2nb
@rajendrakumar-el2nb 4 ай бұрын
Can you please upload a full python course
@dulamsindhuja6804
@dulamsindhuja6804 28 күн бұрын
I have a doubt over here you made the page for ordering please let us know how the resto owner or resto people will get notified those orders and keep track of it?
@LaadiarmyHR
@LaadiarmyHR 2 ай бұрын
Bhaiya "Yes" karne ke bad aage another item kaise show kare 🎉🎉❤❤
Loops In Python | Python for Beginners | #pythonprogramming
15:22
Coding With Sagar
Рет қаралды 24 М.
WhatsApp Message Automation In Python | Python full course | Sagar Chouksey
26:47
Какой я клей? | CLEX #shorts
0:59
CLEX
Рет қаралды 1,9 МЛН
«Жат бауыр» телехикаясы І 26-бөлім
52:18
Qazaqstan TV / Қазақстан Ұлттық Арнасы
Рет қаралды 434 М.
Почему Катар богатый? #shorts
0:45
Послезавтра
Рет қаралды 2 МЛН
To-do App In Python  | Python Project with Source Code
12:59
Coding With Sagar
Рет қаралды 39 М.
I Created this website using Pure Python | Anvil Tutorial 🔥
27:47
CodeWithHarry
Рет қаралды 458 М.
How to Make a Final Year Project Synopsis in 5 mins | Project Ideas
4:02
Bright Mind Campus
Рет қаралды 17 М.
Let's code a beginner Python BANKING PROGRAM 💰
15:01
Bro Code
Рет қаралды 326 М.
Python 101: Learn the 5 Must-Know Concepts
20:00
Tech With Tim
Рет қаралды 1,3 МЛН
Contact Book App in Python | Python for Beginners | #project11
17:02
Coding With Sagar
Рет қаралды 15 М.
Please Master These 10 Python Functions…
22:17
Tech With Tim
Рет қаралды 256 М.
File Management App In Python | Python Project for Beginners
22:47
Coding With Sagar
Рет қаралды 22 М.
Python for Beginners - Learn Coding with Python in 1 Hour
1:00:06
Programming with Mosh
Рет қаралды 20 МЛН
Какой я клей? | CLEX #shorts
0:59
CLEX
Рет қаралды 1,9 МЛН