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
Roar: The Most Dangerous Movie Ever Made | The Strange Truth
What makes Roar so unique is that you will never see people in close proximity with animals. I mean, in with them, touching them every day was life and death. You would never be allowed to do that now. Good God, how to describe Roar? Most films you talk …
4 Revolutionary Riddles Resolved!
This video contains the answers to my four revolutionary riddles, so if you haven’t seen the riddles yet, you should probably watch them before you watch the answers. It’s OK; I’ll wait. Just click this card up here. [Ticking clock sound] Now, when I fil…
Embracing Nihilism: What do we do when there's nothing?
God is dead. God remains dead, and we have killed him. How shall we comfort ourselves, the murderers of all murderers? What was holiest and mightiest of all that the world has yet owned has bled to death under our knives. Who will wipe this blood off of u…
How Much Money is LOVE Worth?
Hey, Vsauce. Michael here. And I’m in Los Angeles, but today we’re going to talk about love. You can’t buy love, but what if you could? I mean, what if I had a machine that could make you fall in love with someone for the rest of your life? What should I…
Long run average total cost curve | APⓇ Microeconomics | Khan Academy
We’ve talked about the idea of average total cost in several videos so far, where it was the sum of your average variable cost and your average fixed cost. But when we’re talking about fixed costs, by definition, that means we’re talking about things in t…
Dealing cards with functions | Intro to CS - Python | Khan Academy
Let’s design a program with functions and nested function calls. We want to build a program that lets the user play several different car games. That means every game is going to need to share functionality for dealing a deck of playing cards. The first …