"real world scenario"
These blog posts are slowly getting further and further apart, so I have to recommit myself to being better about it.
for my practice today I asked chatgpt to make me a "real world" scenario that I would find myself doing on a job. The scenario is basically checking a list of entries for contacts in a business to make sure entries are valid. I am checking both names and emails to make sure they are actual content or not just a space. It has been nice trying out .strip() and .split() to see how they work. .strip() has been nice to help remove whitespace from all the entries.
I know that I am not able to do a lot of this stuff without help from some form of AI right now, but it feels awesome being able to reason with it and make my own suggestions or have my own ideas going into a solution before I ask for help. I'll count it as progress for now and keep moving forward.
for my practice today I asked chatgpt to make me a "real world" scenario that I would find myself doing on a job. The scenario is basically checking a list of entries for contacts in a business to make sure entries are valid. I am checking both names and emails to make sure they are actual content or not just a space. It has been nice trying out .strip() and .split() to see how they work. .strip() has been nice to help remove whitespace from all the entries.
I know that I am not able to do a lot of this stuff without help from some form of AI right now, but it feels awesome being able to reason with it and make my own suggestions or have my own ideas going into a solution before I ask for help. I'll count it as progress for now and keep moving forward.
here is a snippet of what I have done so far. I will probably keep going on this one a little bit more. I have enjoyed working through it, so might as well keep going on it while I can.
Comments
Post a Comment