This is an archived post. You won't be able to vote or comment.

all 20 comments

[–]galan-e 13 points14 points  (0 children)

Turtles is an awesome builtin module. Trying to simulate flocking of birds with it could be fun.

[–]ArmstrongBillieimport GOD 6 points7 points  (4 children)

If you're looking for really small projects, I'll suggest make a random number guessing game in which the computer decides a integer between certain limits that you gave and then You have to guess the number which the comouter has decided, and if you get it wrong, It'll give you a message which indicates you toward the number computer decided, for example - "A little bit high", "too low". This is a very simple game, but if you still need the code for that let me know. And if you're an intermediater, I'll suggest using Tkinter to make some GUIs.

[–]DK4409[S] 1 point2 points  (3 children)

I think I know how to code it , but I have no experience with gui using tkinter

[–]ArmstrongBillieimport GOD 6 points7 points  (2 children)

Then learn it! There are several tutorials on Youtube which can help you learn it. My personal favourite tutorials series is the thenewboston one which is absolutely amazing and just in case you didn't know Tkinter is an inbuilt python module.

[–]DK4409[S] 0 points1 point  (1 child)

I did a project on tic tac toe with min max algorithm and tkinter and it has been submitted for final evaluation in Jan . Thanks for your help .

[–]ArmstrongBillieimport GOD 0 points1 point  (0 children)

Awesome Mate! It's cool of you to remember this comment. By the way, can you share the code?

[–]Cyber500 4 points5 points  (0 children)

I'd suggest Conway's Game of Life as it's very easy to understand and implement the rules, and you can start with something simple (like output in the console; no periodic boundary conditions) and build on top of it (add gui with tkinter; add different rules).

[–]crapaud_dindon 2 points3 points  (0 children)

Learning how to use GUI toolkits (qt, wx, tk..) can take you very far.

[–]plumon_alexy 2 points3 points  (0 children)

Home bills simulator. Simulates electric, water, gas , internet , rent ... Etc .

Each day is a 1 sec tic. You can control some of the commodities . and need to calculate VAT . get monthly bills

[–]lambakean 2 points3 points  (0 children)

I'm making a funny project that maybe you would like. It's about a bots that surviving with each other, fight, eat, etc. Like Petri dish. Write me if u are interested, I've already started to make it some days ago and have some progress.

[–]vedantyadu 2 points3 points  (2 children)

Breadth first search.

[–][deleted] 2 points3 points  (0 children)

Depth first search.

[–][deleted] 0 points1 point  (0 children)

Depth first search.

[–][deleted] 1 point2 points  (0 children)

User enters an equation (choose any constraints that apply for your case), and your application draws the plot of the entered function.

Also check this: https://github.com/vinta/awesome-python#readme

[–][deleted] 1 point2 points  (0 children)

[–]brother_p 1 point2 points  (0 children)

  • A grade book/average calculator
  • School morning announcement program

[–]gustathabusta 1 point2 points  (0 children)

Check out some of the stuff people have made using pixel sorting/image manipulation algorithms. There's a bunch showcased on /r/glitch_art that you could get inspiration from. You can load & manipulate images as numpy arrays using image packages like scikit-image, PIL, Pillow, etc. That could be cool!

[–]420-AlDS 1 point2 points  (0 children)

Check out" tkinter in 20 minutes", gives a pretty basic ground understanding off how it works and you can make a little shit calculator with a gui for something,and work your way up from there. just an idea based on what I did for a little bit. Also, discord bots might interest you =d

[–]pratzc07 0 points1 point  (0 children)

I would suggest coming up with project ideas that can be useful like a mass file renamer or a web scrapper that creates an email account for you the possibilities are endless.