Python Forum
Feedback on my first program?
Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Feedback on my first program?
#7
Hey,
I'm new to Python and programming so won't be of much help but for chosing the option, since you want to match keywords to the name of an option, why not try and use RE (Regular Expressions)? I've found them really useful in my own scripts.

Maybe with something along the lines of:
re.match(chosen_task, the_string_it_should_match) is not None:
    #do smth if anything matches
Couldn't help you further with RE since they're a dark spot for me too right now but if you type it into stackoverflow you'll get tons of handy examples.

One other thing that comes to my mind reading your code that I've been told numerous times to do, make your functions reusable. As beginners we often tend to want to cram a lot of things inside one function, we think it's better, faster... But seasoned programmers prefer having one-task functions that call other subfunctions, that makes them reusable in other bits of your code to do something else. I try to think of functions as bricks that shouldn't become entire walls. Of course it depends on the complexity of the program, if you're doing a top-notch thing maybe your "one-task" will be at least 10 functions calls and uses...

All the best, keep up learning!
Reply


Messages In This Thread
Feedback on my first program? - by jibby - Jun-12-2018, 04:20 AM
RE: Feedback on my first program? - by perfringo - Jun-12-2018, 06:35 AM
RE: Feedback on my first program? - by jibby - Jun-12-2018, 10:40 AM
RE: Feedback on my first program? - by killerrex - Jun-12-2018, 08:47 AM
RE: Feedback on my first program? - by perfringo - Jun-14-2018, 06:38 AM
RE: Feedback on my first program? - by jibby - Jun-18-2018, 04:09 AM
RE: Feedback on my first program? - by WolfWayfarer - Jul-16-2018, 08:42 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  First program feedback xyzabc12310000 2 3,452 May-20-2018, 05:06 PM
Last Post: xyzabc12310000
  I need some feedback on this program tannishpage 3 3,187 Mar-22-2018, 05:31 AM
Last Post: tannishpage

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020