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
Why Lionfish Should Be Your Favorite Fish to Eat | Nat Geo Live
When I was 17, I was diving off the coast of South Florida and I saw the most beautiful fish I had ever seen. It had these bold stripes and these big dramatic spines. And I had no idea what it was. So I went to the dive master and he told me I had just se…
Short, medium and long term financial goals | Financial goals | Financial literacy | Khan Academy
So it’s very likely that you have different financial goals over different amounts of time. For example, you are likely, or maybe you should have, long-term financial goals. Long-term financial goals are like: I want to make sure I have enough money for r…
Analyzing relationships between variables using tables and equations | 6th grade | Khan Academy
We’re told Rava is researching an electric car. She finds this graph which shows how much range, measured in kilometers, the car gains based on charging time. All right, and they say first fill in the missing values in the table below. If you are so inspi…
National Geographic Live! - Bringing China and Africa Together to Save Elephants | Nat Geo Live
The future of the African elephant is threatened by the illegal ivory trade. People are unable to organize collective and effective conservation efforts. A way forward is to create a new social space for cross-cultural understanding and engagement. I was…
TAOISM | The Art of Doing without Doing
Have you ever reflected on the word ‘doing’? ‘Doing’ points to performance, achievement, effort. It also implies that there’s a ‘doer’ who engages in ‘doing something’, and that there’s a passive element or ‘the thing that’s being done’. But does it work …
Representing systems of any number of equations with matrices | Precalculus | Khan Academy
In a previous video, we saw that if you have a system of three equations with three unknowns, like this, you can represent it as a matrix vector equation. Where this matrix, right over here, is a three by three matrix that is essentially a coefficient mat…