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

Learn to code in 60 seconds #programming #computerscience #python #khanacademy


less than 1m read
·Nov 10, 2024

Learn to code in 60 seconds. A program is a coded set of instructions for a computer to execute. Programs manipulate data, which come in several data types: integers, that's whole numbers; floats, have decimal points; booleans, true or false; and strings, of characters (don't forget the quotation marks).

Need to store a piece of data for later use? A variable names its location and points to it. Have a bunch of data? Organize it with a data structure. Lists store data in an ordered sequence, but we start counting at an index of zero. Dictionaries associate each piece of data with a key for easy lookup.

To make decisions in a program, ask a question with a Boolean expression. Then, choose which path to take with an if statement. To repeat a code routine, use a loop. A while loop repeats until the answer to your question becomes false. A for loop repeats a fixed number of times.

Have a lot of code? Break it down into smaller tasks with functions. Customize the function with input arguments and call the function to execute its task. Did you catch all that? Take it at your own pace with Khan Academy's intro to computer science course.

More Articles

View All
How much I made from 10 Million Views in 30 Days
What’s up you guys, it’s Graham here! So let’s just get right into it. A few months ago, I made a video about how much I made from a 1 million view viral video, which I’ll just tell you so I’m not clickbaiting anyone. I made seventy-three hundred dollars …
Why Geeks are Sexy: The Wing Girls
Hey Vsauce! I’ve got something special for you today. I’m sure you’ve heard of a wingman before, but have you ever heard of a wing girl? Well, guess what? There’s two of them right now! They met with Ben and Mark in LA like a few weeks ago, and I said, “H…
How AIs, like ChatGPT, Learn
On the internet, the algorithms are all around you. You are watching this video because an algorithm brought it to you (among others) to click, which you did, and the algorithm took note. When you open the TweetBook, the algorithm decides what you see. Wh…
Chain rule with the power rule
So we’ve got the function ( f(x) = (2x^3 + 5x^2 - 7)^{88} ) and we want to find the derivative of our function ( f ) with respect to ( x ). Now, the key here is to realize that this function can be viewed as a composition of two functions. How do we do th…
Khan Stories: Jason Spyres
Um, my name is Jason Spires. It’s nice to be able to use that name because for many years, the only name that mattered in my life was Mr. K-99397 because that was my prison number. Unfortunately, at a very young age, I made a stupid decision to sell canna…
Constructing hypotheses for two proportions | AP Statistics | Khan Academy
Derek is a political pollster tracking the approval rating of the prime minister in his country. At the end of each month, he obtains data from a random sample of adults on whether or not they currently approve of the prime minister’s performance. Using a…