Mini Project in Python | Python for Beginners |

  Рет қаралды 312,349

Coding With Sagar

Coding With Sagar

Күн бұрын

Пікірлер: 329
@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
@avinashparchake7935
@avinashparchake7935 8 ай бұрын
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
@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 3 ай бұрын
English please
@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 14 күн бұрын
😂😂😂​@@GouravDas-m5c
@MeharZubair-ml7zl
@MeharZubair-ml7zl Ай бұрын
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")
@Arise-z4f
@Arise-z4f 3 ай бұрын
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()
@devesh6916
@devesh6916 9 ай бұрын
TBH bhai things I was searching since long you made that love your way of explaining things 🙏
@asmitaJaiswar-c9v
@asmitaJaiswar-c9v 15 күн бұрын
iss video me deatil me smjhane k liye bohot bohot shukriya😃😊🙏 mujhe samjh me b aay or acha b laga
@abhishekchauhan263
@abhishekchauhan263 8 ай бұрын
No need for this background music. You can do more low this bgm.
@SHADRIFAT
@SHADRIFAT 5 ай бұрын
It's awesome bro. Pls make some more simple python mini project and make a playlist of this kind of thinks...
@VK18Reacts
@VK18Reacts 5 ай бұрын
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
@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 21 күн бұрын
@@tanulupadhyay1802 vs code
@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...❤
@anujpareek0004
@anujpareek0004 9 ай бұрын
Bhai please series ko continue rakhna ❤
@gymninjafx
@gymninjafx 9 ай бұрын
@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")
@Its__AnkitSahu
@Its__AnkitSahu 9 ай бұрын
Thanks for the phonebook project...
@ZEESHANUSTAD
@ZEESHANUSTAD 6 күн бұрын
Awsome. whatever basics of Python I learnt from different channels, being utilized here in this project.
@KumarKPandey
@KumarKPandey 18 күн бұрын
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!
@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.🙏🙏🙏🙏🙏
@AbdulKarim-ms1xb
@AbdulKarim-ms1xb 24 күн бұрын
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
@AdityaPrasad111
@AdityaPrasad111 5 ай бұрын
Really nice project made the phone book completely myself it was fun learnt alot, very nice channel
@Animal_funny_short582
@Animal_funny_short582 7 ай бұрын
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?
@PankajAdhikari-ue5wd
@PankajAdhikari-ue5wd Күн бұрын
for those who is wondering what about lower or uppercase like "PIZZA" or "pizza". You can use ' .lower() ' at the end of item_1, another_item, and item_2 to convert input into lowercase but make sure the dictionary should be also in lowercase. For uppercase vice versa
@btsinspired...4572
@btsinspired...4572 Ай бұрын
Thanku brooo hame kuch bhi nahi milra tha code mile tho run nhi hora tha soo tq ise video helpful❤
@ambikaroy1313
@ambikaroy1313 3 ай бұрын
Very simple n sorted thank u 🙏
@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")
@P.priiyannshii
@P.priiyannshii Күн бұрын
Wow... thank you 🙏🏻
@nikhilgowda8544
@nikhilgowda8544 5 ай бұрын
Your videos are awesome 🔥🔥🔥🔥🔥🔥
@andamanminiv-logs
@andamanminiv-logs 3 ай бұрын
Thank you so much sir ❤🙏🙏 Background music 😢 please skip background music
@Hassanmujtaba74
@Hassanmujtaba74 3 ай бұрын
❤❤❤ well done
@fouzanqazi6885
@fouzanqazi6885 3 ай бұрын
excellent ! Nice explanation of line by line code.. make more videos of project
@wizardgaming6498
@wizardgaming6498 7 ай бұрын
Nice project simple and clear 😊
@tejaswinikamble6198
@tejaswinikamble6198 3 ай бұрын
Bahut easily understand your video 😊
@fenalchudasama_18
@fenalchudasama_18 5 ай бұрын
Please Keep continue You Understand Very well!!
@ifthiquarahmed5200
@ifthiquarahmed5200 Ай бұрын
Excellent💯
@atharvapapade4241
@atharvapapade4241 6 ай бұрын
Nice explanation of line by line code ! *I request you to make more videos like this plz*
@jyotsana6094
@jyotsana6094 Ай бұрын
Very good..
@NITESH_Kumar76
@NITESH_Kumar76 7 ай бұрын
Sir ji ❤❤❤❤❤❤❤❤ you are very smart 🤓🤓🤓
@shilpikanojia-f1o
@shilpikanojia-f1o 5 ай бұрын
Amazing.... my first project and you explained it very well. Thanks a lot Sagar
@MegaRocky99
@MegaRocky99 Ай бұрын
Thanks bro ap NY boht achy sy samjhye..
@VashuDevRao
@VashuDevRao Ай бұрын
Very nice 👍🏻 Bhai
@dulamsindhuja6804
@dulamsindhuja6804 Ай бұрын
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?
@k-edits-e1
@k-edits-e1 5 ай бұрын
Bro 🤝♥️Keep shine ♥️💎
@adityajunghare8477
@adityajunghare8477 9 ай бұрын
Bhai you are jem ... Nice video 😊
@AnandaSom
@AnandaSom Ай бұрын
Please sir tell me Why In out put when I order cofee Then show the total amount of items to pay is {order_total}
@satyaprakashmane4142
@satyaprakashmane4142 7 ай бұрын
Bhai condition another order wali condition execute nhi ho Rahi please reply
@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
@shahidmalik6107
@shahidmalik6107 2 ай бұрын
@codingwithsagarcw what if i want to print menu by printing dictionary items on separate lines rather than using single print()
@rajeshwaryk2007
@rajeshwaryk2007 3 ай бұрын
Sir , please tell me...Which software ur used fr this python? And ..for practice code Which software is best
@anmolchourasiya12
@anmolchourasiya12 4 ай бұрын
Bhai thankyou kuch seekhne ko mila❤
@ibrahimmd759
@ibrahimmd759 7 ай бұрын
Really helpful ❤❤❤
@typicalshorts2286
@typicalshorts2286 4 ай бұрын
Both hard sir 💪💪
@vikrantmitharwal6474
@vikrantmitharwal6474 3 ай бұрын
Bro don't run music in the background it creates a lot of disturbance but your explanation is awesome Fully understandable
@shreyadhiman275
@shreyadhiman275 27 күн бұрын
Amazing 😊
@hritikRaj20
@hritikRaj20 9 ай бұрын
Bhai incredible bhai ❤❤❤❤❤
@thedataholics
@thedataholics Күн бұрын
thanks.. it's helpful
@awaismubashar6826
@awaismubashar6826 5 ай бұрын
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 🙏❤❤❤
@ifthiquarahmed5200
@ifthiquarahmed5200 Ай бұрын
If we type no and yes Will it take small letters or show errors
@BgmiSaurabh-qb7te
@BgmiSaurabh-qb7te 8 ай бұрын
Bro Don't Loose Hope Your Content Is very impressive❤
@rpawar2525
@rpawar2525 6 ай бұрын
This will certainly boost the confidence of beginners.
@mohammedaadil3872
@mohammedaadil3872 6 ай бұрын
Awesome explanation...next part please...
@SenmaBhavesh-v7d
@SenmaBhavesh-v7d 5 ай бұрын
It's a so interesting sir 😊❤
@vandnasharma9799
@vandnasharma9799 6 ай бұрын
Thanks for your guidance i make the same using tkinter 👍😃💞
@LEGHARI_
@LEGHARI_ 5 ай бұрын
SHANDAAAAR❤
@shwetamehta6561
@shwetamehta6561 Ай бұрын
I want a project on blood bank.
@asmitaJaiswar-c9v
@asmitaJaiswar-c9v 15 күн бұрын
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
@madhabpatra5800
@madhabpatra5800 6 ай бұрын
Thank you so much sagar 🙏🙏
@Ajyyt
@Ajyyt 6 ай бұрын
Good video for beginners ❤
@manishpandey7944
@manishpandey7944 6 ай бұрын
Thanks man, this was very easy and straight forward...
@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
@marrys_fashion_world
@marrys_fashion_world 7 күн бұрын
AMAZING
@HasanBaig26
@HasanBaig26 9 күн бұрын
thank you brother. sb kuch tjeek tha bs music band kr do ya full slow awaz kr dia kro
@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
@awaissaleem-n5e
@awaissaleem-n5e Ай бұрын
Good brother keep doing this
@-NarutoUzumaki334
@-NarutoUzumaki334 4 ай бұрын
Nice Video Bro 👌
@Pk36372
@Pk36372 7 ай бұрын
Brilliant 👍👍 bro
@abhishekkaran1205
@abhishekkaran1205 4 ай бұрын
last item not showing kindly help
@Activitieswithshruti
@Activitieswithshruti 3 ай бұрын
Items ki quantity ka bhi program btao
@sirineelimasaride9762
@sirineelimasaride9762 4 ай бұрын
nicely explained...thankyou &can you plz keep low background music
@mohammadahmed332
@mohammadahmed332 4 ай бұрын
Thanks brother your video is very informative.
@EditsByShaurya07
@EditsByShaurya07 9 ай бұрын
Why Only 343 Views He Deserve More..
@funshortscreator
@funshortscreator 7 ай бұрын
Helpful really awesome ❤😊
@palakg_18
@palakg_18 8 ай бұрын
Very nice project bhaiya
@Daigift
@Daigift Ай бұрын
rs mount ke bad me lagaya jata ha bhai like (20Rs) and doller mount ke pahale like ($5) just for knowledge
@ZUGNUKHATOON
@ZUGNUKHATOON 20 күн бұрын
Thanks bro 🎉
@barriramadevi2446
@barriramadevi2446 6 ай бұрын
Very good explanation
@maheshramteke2765
@maheshramteke2765 8 ай бұрын
Good video. Really helpful and useful for beginners in python
@OPAyanMEHARYT
@OPAyanMEHARYT 4 ай бұрын
Use for loop to do item 1 to minimize work
@shubhangiphuke3841
@shubhangiphuke3841 27 күн бұрын
jo freeze value likhi hui hai wo Kaiser type kare in visual studio
@kedarnathnagri951
@kedarnathnagri951 6 ай бұрын
Thanku Bhai ❤
@rakeshraki2575
@rakeshraki2575 3 ай бұрын
Bro I feel it but this program to convert front end mey kaisaa karegaa plz making video
@Swati_sinha05
@Swati_sinha05 8 ай бұрын
Thank you bhya bht Easley apne bta diya Thanku so much bhiya
@shortaffectionstory
@shortaffectionstory 5 ай бұрын
Great job
@privategaming5553
@privategaming5553 2 ай бұрын
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.
@ENGRWAQASALISHAH
@ENGRWAQASALISHAH 8 ай бұрын
2nd part of this project link plz???
@sarikachouhan7925
@sarikachouhan7925 8 ай бұрын
Tqsm Bhai ,this video is amazing😍
@kavitanagpal8863
@kavitanagpal8863 8 ай бұрын
Very good video , lovely nice to watch
@BCAWALASTUDENT
@BCAWALASTUDENT 6 ай бұрын
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 ?
Loops In Python | Python for Beginners | #pythonprogramming
15:22
Coding With Sagar
Рет қаралды 26 М.
Let's code a beginner Python BANKING PROGRAM 💰
15:01
Bro Code
Рет қаралды 341 М.
БАБУШКА ШАРИТ #shorts
0:16
Паша Осадчий
Рет қаралды 4,1 МЛН
#behindthescenes @CrissaJackson
0:11
Happy Kelli
Рет қаралды 27 МЛН
Learn Python With This ONE Project!
55:04
Tech With Tim
Рет қаралды 1,9 МЛН
To-do App In Python  | Python Project with Source Code
12:59
Coding With Sagar
Рет қаралды 41 М.
Python Tutorial for Beginners | Learn Python in 1.5 Hours
1:17:12
Apna College
Рет қаралды 10 МЛН
3 Mini Python Projects - For Beginners
53:53
Tech With Tim
Рет қаралды 471 М.
3 PYTHON AUTOMATION PROJECTS FOR BEGINNERS
17:00
Internet Made Coder
Рет қаралды 1,7 МЛН
20 Programming Projects That Will Make You A God At Coding
14:27
The Coding Sloth
Рет қаралды 1,7 МЛН
Python Projects for Beginners - Master Problem-Solving! 🚀
53:00
Programming with Mosh
Рет қаралды 175 М.
25 nooby Python habits you need to ditch
9:12
mCoding
Рет қаралды 1,8 МЛН
Start Automating Your Life Using Python! (File Management with Python Tutorial)
13:07
Python for Beginners - Learn Coding with Python in 1 Hour
1:00:06
Programming with Mosh
Рет қаралды 20 МЛН
БАБУШКА ШАРИТ #shorts
0:16
Паша Осадчий
Рет қаралды 4,1 МЛН