Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

What do i do?

+4 votes
asked Oct 30, 2022 by Eidnoxon (5,140 points)
Hi!  I finished a 12 hour long python tutorial course, and learned almost everything. Like GUI, and other stuff you can imagine. I want to continue learning tho, and practicing. Can somebody tell me how can I continue? Thanks.

Or maybe send me a good website that has every single part in it. I'd really appreciate it.

1 Answer

+1 vote
answered Oct 30, 2022 by Peter Minarik (86,040 points)

Practice, practice, practice.

Learning and doing tutorials is nice, but have you really made those skils your own? Can you apply what you've learned?

Put yourself to the test and start using what you've learned. Start designing solutions to problems. Start writing code.

You can look at questions asked here by others and create your own solution for problems (some or quite complex). You don't need to share these solutions, you can just create them for your own amusement and practice.

For instance, you can create a dungeon crawler where a dungeon is given by a 2-dimensional where a cell may have up to 4 connection and your goal is to collect the treasure and avoid monsters.

One such (7 x 7) dungeon could look like this:

XXXXXXX
XTX.MXX
X....TX
XXXX.XX
XM...XX
XX.X.TX
XXSXXXX
  • X: wall
  • . a path where you can go
  • M: monster, you want to avoid these
  • T: treasure, collect them
  • S: Start, the entrance of the dungeon. You want to leave by coming back here
Good luck! :)
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...