Python can be used for...
# 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:
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:
Instructions
▼ ← Click the triangle to hide or reveal instructions.function HelloMessage() {
return <h1>Hello, World!</h1>;
}
render(HelloMessage);