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
Calculating weights on Mars with if-elif-else | Intro to CS - Python | Khan Academy
Let’s design a program with chain conditionals. We want to build a program that calculates an object’s weight on different planets. We have the formula for this already: weight equals mass times gravity. So, if we know an object’s weight on Earth, we can…
Hello Cherry Blossoms | Sue in the City
Yay! Suzie’s by the trees and the cherry blossoms. Let the wind go through my hair, so guess what city I’m in? Washington D.C., our nation’s capital. It is the seat of power for the United States of America. Our country may be young, but what a history we…
The Land of Pure Silence | Continent 7: Antarctica
We’ve got a waypoint for the position of the ship. We’ll probably go out of visual range, but we’ll stay in radio contact and just kind of check in wherever we see anything or as we pass by landmarks. You need to have a reference point to be able to say w…
Joan Lasenby on Applications of Geometric Algebra in Engineering
So Joan, as we walk through geometric algebra, I think the best place to start might be through a more tangible example. You’re doing a project with drones here at Cambridge; can you explain that first? Yes, so we’re doing a project with drones. This is …
The Most Radioactive Places on Earth
[Music] So I’m not B H. It’s overloaded; radiation is frightening, at least certain types of it are. I mean, my Geiger counter doesn’t go off near my mobile phone or the Wi-Fi router or my microwave. That’s because a Geiger counter only measures ionizing …
Determining whether values are in domain of function
We’re asked to determine for each x value whether it is in the domain of f or not, and they have our definition of f of x up here. So pause this video and see if you can work through this before we do it together. All right, so just as a bit of a review,…