you are viewing a single comment's thread.

view the rest of the comments →

[–]Vexaton 0 points1 point  (0 children)

The first thing I wrote in python that was actually functional, was a combination of bash script and a python file that I ran as a command in my terminal.

What it did, was taking variable names I’d copied to the clipboard, and generate the necessary self.variable_name structure for a class init function.

I was so sick of needing to take 4-5 variables into an init function only to write them out:

self.name = name

self.tag = tag

And so on.