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
Constructing exponential models | Mathematics II | High School Math | Khan Academy
Derek sent a chain letter to his friends, asking them to forward the letter to more friends. The group of people who receive the email gains 910 of its size every 3 weeks and can be modeled by a function P, which depends on the amount of time T in weeks. …
Peter Lynch: How to Invest During High Inflation
So we just got fresh inflation data a week or two ago and guess what? It showed that yet again the annual inflation rate has risen in the U.S. Inflation is now running at seven percent per year. We know that because of this inflation, Jerome Powell and th…
Eric Migicovsky at Startup School SV 2014
Hi guys, um, it’s an honor to be here. I really appreciate you guys taking time out of your day to come listen to me. Um, I know that many of you may have heard about us when we launched on Kickstarter about two years ago. Um, I’m here to tell you a littl…
3d curl intuition, part 2
So where we left off, we had this two-dimensional vector field V, and I have it pictured here as kind of a yellow vector field. I just stuck it in three dimensions in kind of an awkward way where I put it on the XY plane and said, “Pretend this is in thre…
Cyrus the Great establishes the Achaemenid Empire | World History | Khan Academy
As we enter into the 6th Century BCE, the dominant power in the region that we now refer to as Iran was the Median Empire. The Median Empire, I’ll draw the rough border right over here, was something like that, and you can see the dominant region of Media…
2015 AP Calculus BC 5c
Find the value of K for which F has a critical point at X = -5. All right, so let’s just remind ourselves what F of X and F prime of X were. They gave it to us at the top. F of X is equal to ( \frac{1}{x^2 - Kx} ) and then F prime of X is equal to all of…