Python Projects Ideas - 11 Awesome Games You Can Make With Python

Поділитися
Вставка
  • Опубліковано 12 вер 2024

КОМЕНТАРІ • 191

  • @TechWithTim
    @TechWithTim  4 роки тому +62

    Had some troubles uploading this the other day... Anyways, now it is up! Hope you all enjoy and don't forget to check out the new merch ;) teespring.com/stores/tech-with-tim-merch-shop

    • @lolvivo8783
      @lolvivo8783 4 роки тому

      Thanks man

    • @gurukulscience4070
      @gurukulscience4070 4 роки тому

      hey tim I have a question to ask that i want to create e commerce site and android application with python . can it'll be good in python or I have to learn java too. plz reply me.

    • @edizcinbas
      @edizcinbas 4 роки тому +1

      I have problems with the flappy bird pygame codes. I commented on that video and this one but no one responded. If someone sees this I can send the code. The problem is not hardware related as my friends have the same problem with the same code. I get no error messages and the window opens but it is just full black. It is not loading either as I left it open for 4 hours. Please help

    • @ahmadhadwan
      @ahmadhadwan 3 роки тому

      I Know im really late to reply but Creating Games in python is like using a fork for the soup

    • @ahmadhadwan
      @ahmadhadwan 3 роки тому

      @Himanshu Sharma most of the stuff created with python are addons, we have C++ C#, why would anyone create a full game in python its slow as hell

  • @tejasjoshi3724
    @tejasjoshi3724 4 роки тому +170

    Hello Tim,
    Today is Guru Pournima In India. It is kind of like Teacher's Day. We worship our teachers today.
    So I would like to wish you Happy Guru Pournima and thank you for doing what you are doing.

    • @mohamedlaqin
      @mohamedlaqin 4 роки тому +5

      We dont WORSHIP teachers wth

    • @creationduwal
      @creationduwal 4 роки тому +18

      @@mohamedlaqin At least you can respect them.

    • @shubhayusarkar6790
      @shubhayusarkar6790 3 роки тому +11

      @@mohamedlaqin in india it is believed that a teacher makes the best out of you so yes we do respect and as well worship them
      Thanks

    • @beastnighttv
      @beastnighttv 3 роки тому +2

      @@shubhayusarkar6790 yup

    • @anant6778
      @anant6778 3 роки тому +3

      @@mohamedlaqin It's a hindu festival , you may not know the specifics better than those with first-hand knowledge !

  • @CodeWithSwastik
    @CodeWithSwastik 4 роки тому +22

    Like if Tim helped you and inspired you!

    • @chennn958
      @chennn958 4 роки тому

      Hey i watch you! Nice vids fam

  • @andy_de2041
    @andy_de2041 4 роки тому +14

    Need a hoodie to match my duel Tim mugs. I actually have a tip for Tim today. A cool shirt with the Tech with Tim logo as well as the Python symbol. Then your fans would be unstoppable...

  • @aulalivre5481
    @aulalivre5481 3 роки тому +16

    Nice projects man, i'm still learning, but to study python is cool! 🇧🇷 hugs from Brazil!

  • @acm1812
    @acm1812 4 роки тому +5

    Great video Tim! Was looking for projects to work on in quarantine. This helped out! Thanks 😊

  • @pafnouticlavipiano
    @pafnouticlavipiano 4 роки тому +4

    Cool video :)
    Will definitely try the Flappy bird one. And programming a fully-featured chess programm has always been one of my dreams since my early childhood so I will certainly give it a try to :)

  • @ViratKohli-jj3wj
    @ViratKohli-jj3wj 4 роки тому +7

    *Now make GTA V with python*

  • @chopinsurn1052
    @chopinsurn1052 4 роки тому +5

    U r amazing! I’m a first year student pursing CS as well. Love from Shanghai 🥰

  • @muhammadzufayri5656
    @muhammadzufayri5656 4 роки тому +4

    Before considering to do anything. I would always go look to tech with tim. Anything that he said, I believe...

  • @rmr_md6834
    @rmr_md6834 4 роки тому +11

    Could you make a tutorial on how to save the (py)game progress artet the game us closed? Like, when you close the software and then open it again the progress should be saved (Highscore, Checkpoint, etc.). Would really appreciate that! :)

    • @matiissmc8987
      @matiissmc8987 3 роки тому +4

      u can use json files for creating dictionaries and when u close game save progress to that json file and when u open it load that data.
      example (may not be the best and probably could be improved upon) :
      import json
      # create dictionary with starting values
      data = {'highscore': 0, 'checkpoint': 'number_1'}
      # open saved json file
      try:
      with open('data.json') as file:
      json.dump(data, file, indent=2)
      # exception clause if file does not exist
      except:
      with open('data.json', 'w') as file:
      json.dump(data, file, indent=2)
      with open('data.json') as file:
      saved_data = json.load(file)
      # extract data from that json file
      current_highscore = saved_data['highscore']
      current_checkpoint = saved_data['checkpoint']
      # now you can use above data in your game
      # sth happens and above data changes to the one below
      # so you put it in the dictionary created above
      data['highscore'] = 30
      data['checkpoint'] = 'number_3'
      # when game ends update json file with the new data
      saved_data.update(data)
      with open('data.json', 'w') as file:
      json.dump(saved_data, file, indent=2)

    • @lacky19
      @lacky19 2 роки тому

      You can also use text files

  • @babaipaul515
    @babaipaul515 4 роки тому +1

    this video was private earlier... thank u Tim .. for such great contents

  • @pushpajitbiswas3752
    @pushpajitbiswas3752 4 роки тому +1

    you made really cool projects, specially I love the flappy bird one, the way u implement the AI into that game is so awesome bruh..

  • @supermalavox
    @supermalavox Рік тому +3

    Hello Tim, do you have any videos showing games that use stereo positioning in Python so a person could be able to build audio games, which would be accessible for blind/visually-impaired players?
    Thanks!

  • @Niko753A
    @Niko753A 2 роки тому

    Tim did it again! Awesome stuff!

  • @coorgtrip1202
    @coorgtrip1202 4 роки тому +1

    Great videos from you waiting for the pyqt series !!

  • @ayman4490
    @ayman4490 4 роки тому +19

    How doesn’t this channel have 1 mil subscribers? He does soo much for us 😇

  • @Proud_of_them
    @Proud_of_them 4 роки тому +3

    got a lot of inspiration for making games

  • @ben4322awesome
    @ben4322awesome 4 роки тому +4

    us clicking on the video: oh, cool things to make with python code, finally! tim: has mic on his face the entire time.

    • @TechWithTim
      @TechWithTim  4 роки тому +4

      Well! If you just wanted cool things than the mic on my face shouldn’t bother you when you can still see the games ;)

  • @can6099
    @can6099 4 роки тому +2

    very nice video, your videos are really helpful thank you!

  • @adamkabbara9719
    @adamkabbara9719 4 роки тому +6

    Hi there Tim, thanks for the super helpful videos you post. I was wondering if it is possible for you to create a series on building a python program to trade stocks.
    That would be really cool.

  • @EntertainmentandSongs
    @EntertainmentandSongs 4 роки тому +34

    Love from India 🇮🇳🇮🇳🇮🇳

    • @okaiee6911
      @okaiee6911 4 роки тому +2

      Me too bro😃👨‍💻

    • @abhimavila
      @abhimavila 4 роки тому +2

      Me too bro

    • @TechWithRushabh
      @TechWithRushabh 4 роки тому +2

      Me too bro 🇮🇳🇮🇳🇮🇳🇮🇳

    • @assassinator1396
      @assassinator1396 4 роки тому +1

      Me too 🇮🇳🇮🇳🇮🇳🇮🇳🇮🇳🇮🇳🇮🇳🇮🇳🇮🇳🇮🇳🇮🇳

    • @nishantgarg3688
      @nishantgarg3688 3 роки тому

      Love from old wild west

  • @AT-gy9rz
    @AT-gy9rz 4 роки тому +2

    If I want to make a project of “mini-games portal”, should I make it on Unity or Pygame? I know a little bit of Unity and C#, but also know all the basics of python
    I have looked up some comments online, and some people say doing a project in Unity is better cuz it’s a more commonly used tool, but there are also people saying pygame is better because it shows your fundamental skills on programming better (cuz for unity, there are so many built in tools in unity, where u can literally make a game without doing any coding)

    • @migueldomingos4570
      @migueldomingos4570 4 роки тому

      I would definitely recommend unity. Yes it has built in tools that will let you code less, but you still are going to code a lot and it gives you more time to work on new stuff instead of doing stuff that everyone has done millions of times like physics and collisions

    • @193
      @193 4 роки тому

      @@migueldomingos4570 yeah.... unity also has an easier and more organised gui compared to just a big file of code when doing pygame

    • @AT-gy9rz
      @AT-gy9rz 4 роки тому

      thanks!!!

  • @deedavis926
    @deedavis926 4 роки тому +1

    This motivates me to keep learning python. Always been my passion

  • @StommelenGames
    @StommelenGames 3 роки тому

    That tower defence looks awesome

  • @DrWho2008t101
    @DrWho2008t101 4 роки тому

    Thanks for the video!

  • @philgeorge5379
    @philgeorge5379 4 роки тому +7

    Hey Tech With TIm, I absolutely love your videos and look up to you as one of the best, reliable people to learn python from. I have been trying to learn Django and Flask but errors and errors pop up in the terminal but luckily you made a video about these errors previously. I watched that video and almost fixed but now my python uninstaller is saying that python was never installed even though I made a basic script moments ago. I have been trying to figure the problem out but just cant do it. is there anyways you can help?

    • @Ehren1337
      @Ehren1337 2 роки тому

      Did you figure it out yet? What was it?

  • @creationduwal
    @creationduwal 4 роки тому +5

    I was literally searching for this video 4 days ago

  • @tokaisu
    @tokaisu 3 роки тому

    What a awesome project, Tim!

  • @deepscientific7049
    @deepscientific7049 4 роки тому +4

    Can you make a video on explains what is an API and how does it work PLEASE

    • @vonnazareth8119
      @vonnazareth8119 4 роки тому +1

      Freecodecamp did a video about that , its pretty good

  • @antoinemeloche
    @antoinemeloche 4 роки тому

    Happy Canada Day tim

  • @art.65367
    @art.65367 4 роки тому

    Thanks for the ideas!

  • @samyepthatsme
    @samyepthatsme 4 роки тому

    Awesome video, thanks for the inspiration!

  • @surrendramonkeyshines5634
    @surrendramonkeyshines5634 4 роки тому +1

    if u had some hoodies with the writings 'If I can type today" or 'I really cannot type today' printed on them, I would consider ordering one for sure

  • @kemenesmark
    @kemenesmark 4 роки тому

    Thanks for this great ideas

  • @adebolaolarotimi9243
    @adebolaolarotimi9243 2 роки тому

    This is really nice and cool

  • @SirboOfficial
    @SirboOfficial 4 роки тому

    Nice merch!

  • @empty_dayofthetech
    @empty_dayofthetech 4 роки тому

    Amazing videos!! I'm learning so one day I can create my own tower defense game

  • @sabouma
    @sabouma 4 роки тому

    I gotta say you got some cool merch

  •  4 роки тому

    Amazing. Thanks!

  • @ayushi3532
    @ayushi3532 3 роки тому

    I want this hoodie really bad. I will order one as soon as I get a job. 👍

  • @pumperangereview
    @pumperangereview 4 роки тому +5

    Awesome projects Tim!
    After watching all the projects you've done I feel a bit disappointed about myself haha I'm close to graduate University and still feel like I can't do anything :(

  • @medicenkmy
    @medicenkmy 4 роки тому

    Hi, i really like your channel, very usefull to learn more about Python and how to use it, thanks!

  • @aishwarya897
    @aishwarya897 4 роки тому

    Ol the games u made wr best👍

  • @sarthaksingh4468
    @sarthaksingh4468 4 роки тому +1

    can you make videos on Algorithms solving with python?

  • @drsatyanarayanarentala9213
    @drsatyanarayanarentala9213 3 роки тому +1

    Hello Tim
    You can make a video on paint..

  • @programmerrdai
    @programmerrdai 4 роки тому +1

    Great Content...

  • @hexolomgaming9498
    @hexolomgaming9498 4 роки тому

    Does tim have videos on the gui aspect of python i made my own project in LUI but need better understanding when using gui elements in python btw love the channel tim

  • @galaxysamsung3320
    @galaxysamsung3320 4 роки тому

    Awesome content!

  • @winnumber101
    @winnumber101 4 роки тому

    don't be shy about your merchandise, haha--hold it up with both hands

  • @63_tanishkgupta55
    @63_tanishkgupta55 Рік тому

    Do all of the shown games be developed using turtle module??

  • @arn1123
    @arn1123 4 роки тому +2

    You r amazing seriously man ur so inspiring but I can never find time for programming sue to school. Love from uk

  • @akashvasan
    @akashvasan 4 роки тому +1

    What IDE do you use?

  • @RashidKhan-je8ys
    @RashidKhan-je8ys 2 роки тому

    Love you tim

  • @kamo8741
    @kamo8741 3 роки тому

    I'm just wondering if these ideas would be good enough for OCR A level on-exam assessment. I'm planning to create a game for my project, I'm just sort of wandering around and looking at what kind of games I could make that would be appropriate in terms of complexity and what the specification says.

  • @skycloud4802
    @skycloud4802 4 роки тому

    I want to make a Top Trumps game when. Good enough. I think that would be a great multiplayer game. Is setting up a peer to peer online play difficult?

  • @SchwarzschildM
    @SchwarzschildM 4 роки тому

    @Tech With Tim, is it possible to have similar video for data scientist/science related project list? (Ps. Maybe your sponsor will be happy abot it :) l

  • @SkyFly19853
    @SkyFly19853 4 роки тому

    You can even make a Diablo like game. There is a game called Avolition made in Python...

  • @Brawlstars-lj1qr
    @Brawlstars-lj1qr 3 роки тому +1

    Can you tell me the name or link for the last game

  • @asimocloud5736
    @asimocloud5736 4 роки тому

    Thanks!!

  • @dennismc8145
    @dennismc8145 4 роки тому

    awesome ty

  • @armaaanziyad2772
    @armaaanziyad2772 3 роки тому

    amazing projects

  • @MickeyMouse-ke9jb
    @MickeyMouse-ke9jb 2 роки тому

    Are we able to make online Python games that you don't have to be on the same wifi to play?

  • @davideden2496
    @davideden2496 4 роки тому

    This is nice. I like python

  • @AJ-jj1gs
    @AJ-jj1gs 3 роки тому

    How do you take your pygame project online? Is this even possible at this time? If so, how so? The only way to share projects at this time is to make an executable and send it to the person, but I want to go beyond that and publish my game online to one of my website. Can this be done?

  • @dipikabudhathoki00
    @dipikabudhathoki00 3 роки тому

    Please make videos on pydroid projects

  • @tammieknuth6020
    @tammieknuth6020 3 роки тому

    Inspiration found on facebook :)

  • @kaelrhuan5514
    @kaelrhuan5514 4 роки тому

    Do you have any games course in python?

  • @vidafuku
    @vidafuku 4 роки тому

    love the mic!

  • @haristariq2569
    @haristariq2569 4 роки тому

    have u ever worked on unity?

  • @cankarakus968
    @cankarakus968 4 роки тому

    Im going to ask you in this comment section because this is the most recent video of yours. For a schoolproject, I made an executable file of a python webcrawling script. It has an UI with Tkinter. When running this .exe, the command prompt opens up because of the chromedriver. Do you have any idea how to fix this? I've updated the service.py like someone said on stackoverflow, but it does not solve my problem.

  • @haSHAH1
    @haSHAH1 3 роки тому

    Do bist ein Meister!

  • @michaelmueller5211
    @michaelmueller5211 2 роки тому

    awesome

  • @ahmadhadwan
    @ahmadhadwan 3 роки тому

    Creating games in python is like using a fork for the soup

  • @adityatile1168
    @adityatile1168 4 роки тому

    did you re-uploaded it?

  • @ryanwakebradtelle8682
    @ryanwakebradtelle8682 3 роки тому

    You think the Pico pi could make a handheld better than cheap NES clothes?

  • @edizcinbas
    @edizcinbas 4 роки тому +1

    Hey guys I have tried to build the AI flappy bird tutorial and I cannot make it. I commented this on that video but now one saw it. On the GitHub page the python code doesn't run like it is supposed to. And when I run it from what I did, I don't get any errors but it just opens a black screen. It is not hardware related as I sent the code to my friend and it made the same problem. If anyone wants to take a look at the code I will send it. But I suspect this might be because of a new version of python coming out. The tutorial of that video was 7 months ago so maybe the python codes have changed. Please help

  • @potaziio7174
    @potaziio7174 3 роки тому

    1:50 Not trying to be an asshole but you could tell they were kids all their names started with TTV lmao

  • @ZackAngelSmith
    @ZackAngelSmith 4 роки тому

    Yo can you make a video about comunicating with databases, if you can

  • @shinchannohara3990
    @shinchannohara3990 4 роки тому

    Bro can you please comtinue your data structure series?

  • @keikoo3282
    @keikoo3282 Рік тому

    Great, me beginner 😊

  • @zhengkaitaken
    @zhengkaitaken 3 роки тому +4

    The person who is reading this, I wish you a calm, successful, and healthy life forever ❤

  • @ahmedkhudhair8035
    @ahmedkhudhair8035 4 роки тому

    Can you make more system design tutorials?

  • @mostafaghobashy2724
    @mostafaghobashy2724 Рік тому

    how much is the merch in usd cuz I got 1,350 EGP

  • @abhijeetdeswal
    @abhijeetdeswal 4 роки тому

    Tim first of all hi can you plz show code for the projects you are making plz

  • @lungisaniphungula5838
    @lungisaniphungula5838 4 роки тому

    Dude can you make tutorials about tkinker plz

  • @aashaktsharma8945
    @aashaktsharma8945 3 роки тому

    How to get sprites for these games cause we need sprites to make games

  • @iosule3719
    @iosule3719 4 роки тому

    How wish you could create a slide puzzle all the available types on UA-cam are speed coding and if you could upload it it would be helpful thank you

  • @user-zr3ut9wo9o
    @user-zr3ut9wo9o Рік тому

    The logo of the shirt is like te combination oc java and python 😅😅😅

  • @Kenji-mj5wj
    @Kenji-mj5wj 4 роки тому

    where would we be without Tim

  • @a.t9098
    @a.t9098 4 роки тому

    Hey guys ! I started to code with pygame 2 month ago but I don't even know where I must go to find images for my projects... Can somebody tell me where can I find games assets for create my own video games please ? Thank you :)

  • @rekhakhushi4121
    @rekhakhushi4121 4 роки тому

    A tutorial on panda3d module used to create 3d games

  • @krishnapoddar76
    @krishnapoddar76 4 роки тому

    Pls complete ta kivy course and teach us how to convert the kivy file to android.

  • @backbenchprogrammer5100
    @backbenchprogrammer5100 4 роки тому

    Support you from afghanistan ❤❤❤

  • @zgreatest69
    @zgreatest69 3 роки тому +1

    Woah

  • @mrpancakes
    @mrpancakes 4 роки тому

    Nice

  • @mohammedkhabib7346
    @mohammedkhabib7346 2 роки тому

    Can we make 3d game useing python

  • @EvilbyDevil
    @EvilbyDevil 3 роки тому

    You dont say Su-do-ku. You said: SDOKU but we get it anyways haha

  • @pedropc5824
    @pedropc5824 4 роки тому +1

    3:40 these clothes...

  • @favouroladeji3722
    @favouroladeji3722 4 роки тому

    Can you put your courses on udemy?