ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!

Jump to content



Photo

Looking to make projects for free !


  • Please log in to reply
Looking to make projects for free !

#1

Bully
Bully
    Offline
    4
    Rep
    30
    Likes

    Addicted

  • PipPipPipPipPip
Posts: 159
Threads: 76
Joined: May 27, 2022
Credits: 0

Deal with caution
User has an open scam report.
User has joined recently.
Make sure to use a MiddleMan.
One year registered
#1

Suggest me work to do for free, To develop my language skills in python.

I will send work in dms (make it simple I am a beginner)


  • 0

sig.webp

Signature by @InviteSeller Exp: 7/3/2022


#2

FaithHF
FaithHF
    Offline
    36
    Rep
    234
    Likes

    SESH

Posts: 408
Threads: 36
Joined: Dec 04, 2016
Credits: 0

Seven years registered
#2

Where does your skillset and background actually lie? I can suggest all sorts of projects for the sake of learning, but there's no point in suggesting a binary header analyzer if you mainly want to focus on web dev.

 

Here's a fairly simple one though that's pretty universal. Turn that old "beginner calculator" project that you never personally use into something useful, and make it parse an actual arithmetic string.

 

In other words, your program should parse "(2 + 3) * (4 - (1 + 1))" and evaluate it to 10

 

Basically, all it needs to do is:

--> Validate brackets

--> Validate operations (no dividing by zero)

--> Parse the text into Polish Notation (or Reverse Polish Notation, whatever your preference is)

--> Evaluate the PN/RPN expression

 

In other words, the expression above should turn into:

(Polish Notation, no RPN from me, consider it an exercise for you.)

* + 2 3 - 4 + 1 1

 

And the program should evaluate that string.

 

A few stack structures will be useful here, if you haven't used them before.


  • 1


 Users browsing this thread: