yego.me
💡 Stop wasting time. Read Youtube instead of watch. Download Chrome Extension

Templating a contract with variables | Intro to CS - Python | Khan Academy


4m read
·Nov 10, 2024

Let's work together on a program that uses variables and user input. Here's the problem I'm trying to solve: my friend Deshawn has a catering business, and for each catering job that he takes, he needs to write up a contract between him and the client. Every contract uses the same basic template, but there are blanks that need to be filled in with the event details, like the client name, the venue name, and the date.

These contracts end up being a lot of pages of legal speak, and a lot of these event detail values need to be copied onto multiple pages. Can we build Deshawn a program to help him generate contracts faster? Here we have a bit of code to get us started. Deshawn copied over the first paragraph of his contract template for us to work with.

The first thing I do when I get starter code like this is run it and see if it works and what it does. It looks like it formats the contract a bit with this nice heading, and then it just kind of prints out the template as is. There's still like these blanks here that need to be filled in. Of course, Deshawn's full contract is a lot longer than this, but I kind of like the idea of starting with just this first paragraph to get a feel for how I'm going to solve this problem with a smaller sub-problem before I copy in a ton of text.

One thing I do notice with this code is that we have a linter error over here. It's one of these yellow triangles, so that means it's a warning, not an error, but I still want to take a look at it and see if it's something I can fix. It looks like it's complaining about this line being too long, which, you know, I kind of agree with. I have to horizontal scroll all the way over here just to get to the end of the string. It makes it hard to work with.

To split a long string like this over multiple lines, I can divide the string into several smaller strings and then concatenate them together. Then, if I surround that whole expression in parentheses, I can put these strings on separate lines. Because of the parentheses, the computer treats this whole thing as a single instruction. Before we move on, I'm just going to quickly rerun the program and make sure I didn't break anything while I was here.

Okay, now let's think through how to design this program. I want to generalize this code so I can substitute in the name of any client. The user experience that I'm going for is that Deshawn can come in and enter all the event details, essentially in text boxes, and then the program will give him the completed contract.

For this first paragraph, it looks like the values I'm trying to fill in are the name of the client and the name of the catering company. So, I probably want a variable for each of those. I'm going to want Deshawn to be able to enter some of those values, so I'll probably need an input function call here. But I don't want to have to enter values in the console every time I run the program while I'm still working on it, so I'm just going to stick some placeholder values in here for now.

All I did was add a couple assignment statements that I think are right, so I don't think there should be any bugs. But just to be sure, I'm going to run the program. Alright, now I want to substitute those values in where the blanks are. That means I need to access these variables in this expression so I can substitute the value stored there into the contract string.

So, where I have these underlines in the string, I'm going to delete that blank and then separate the string into two parts at that juncture. There's a lot of strings, so let me check I didn't miss any quotation marks. Great, okay now let's substitute my values in here. I want to concatenate in the caterer name, which is stored in the variable caterer, and over here I want to concatenate in the client name, which is stored in the variable client.

Now when I run the program, I'm seeing those placeholder values I stored in those variables in place of the blanks in the contract. This messed up my line lengths over here a bit, so I'm going to clean that up real quick so it's easier to read. There's one more blank here in the header, and it sounds like Deshawn wants the catering company name to go here, so I'm going to do the same thing and divide that string at the blank and substitute in the caterer variable.

Last step, let's go back to these placeholder values. Deshawn's company is called King Catering, so I'm going to put that in here. The client name, though, is different on every contract, so I want Deshawn to be able to enter that value. That means I'm going to want the input function here, and I'm going to make sure I include a descriptive prompt so Deshawn knows what value to enter.

To test that it works, I'm going to run the program and imagine I'm Deshawn trying to generate a new contract for a client. I enter in the client's name, and then it spits out the first paragraph of my contract. Woo! I have a prototype working. I'm going to take this back to Deshawn and see what he thinks. Once I get his feedback, I can come back in and follow this pattern to generate the rest of the contract, or maybe you want to give it a try.

More Articles

View All
Inside a Dog Rehab Center | National Geographic
We’re going behind the door, so it’ll be a tight squeeze. S.K. and Robin arrived in early 2015. They came to us from Humane Society International, who rescued them in South Korea. They had, you know, told us that these dogs really exhibited behavior that…
Do pineapples grow on trees? - Smarter Every Day 9
[Music] [Music] Okay, so you’re walking through the tropical rainforest, or at least what looks like it, and you come across a pineapple grove. These are what pineapples look like when they’re growing. This is a one that’s not very mature; you can see th…
Identifying f, f', and f'' based on graphs
Let ( f ) be a twice differentiable function. One of these graphs is the graph of ( f ), one is of ( f’ ), and one is of the second derivative of ( f’ ). Match each function with its appropriate graph. So, I encourage you to pause the video and try to fi…
LESSONS FROM STOICISM TO STAY CALM | THE ART OF SERENITY REVEALED | STOICISM INSIGHTS
The art of temperance is the great mastery of choosing to resist rather than to respond. It is the ability to make deliberate decisions as opposed to impulsive ones. In the stoic state, along with wisdom, temperance is one of the four essential virtues. …
A Pitbull Becomes a Service Dog | Cesar Millan: Better Human Better Dog
For the past five years, Johns faced a brain tumor in the fight of his life. His weakened state has caused Goliath to become fixated on protecting him. Today, Goliath faces Caesar’s final challenge, which will determine if he’s balanced enough to be of se…
Escobar's Teenage Assassins | Facing Escobar
When I arrived in Colombia, it didn’t take me very long to realize that I didn’t know a thing about Colombia. Bombs were going off everywhere, people getting killed left and right. By the time I was there, maybe a year, I was obsessed with Pablo. I mean, …