Python can be used for...
Myth: Computer programming requires advanced schooling or training.
Fact: Anyone and everyone can learn how to program with Python.
Code Example
# Prints whole numbers and decimal numbers
print(10)
print(2.5)Instructions
▼ ← Click the triangle to hide or reveal instructions.Python Code Editor
Select a Language:
Editor Output:
Code Example
var client = "John";
console.log(client);
let age = 25;
console.log(age);Instructions
▼ ← Click the triangle to hide or reveal instructions.JavaScript Code Editor
Task Incomplete
Editor Input:
Editor Output:
Code Example
function HelloMessage() {
return <h1>Hello, World!</h1>;
}
render(HelloMessage);Instructions
▼ ← Click the triangle to hide or reveal instructions.