About 33,100,000 results
Open links in new tab
  1. Tutorial: Basic Functions in Python - CodeHS

    Functions complete a specific job that may require a series of tasks. When we want to run the function, all we have to do is define the function, specifying the desired tasks or commands, …

  2. Functions in Karel | Introduction to Computer Science

    A function is made up of 3 parts: the keyword function, the name of the function followed by parenthesis, and the body of the function. The body of the function must be between two curly …

  3. How to Make A Calculator Using Functions | CodeHS JavaScript …

    Nov 2, 2024 · How to Make A Calculator Using Functions | CodeHS JavaScript Tutorial In this video I will show you how to create a calculator using functions and parameters...more.

  4. Documentation for Python - CodeHS

    Make sure that all the code inside your function is indented one level! Defining a Function We define a function to teach the computer the instructions for a new word. We need to use the …

  5. Documentation for JavaScript | CodeHS

    // Functions can take in values, called parameters. // 'input' and prints it. println(input); // Functions can also return a value. // adds two to it, and returns it. return number + 2; // the question you'd …

  6. CodeHS: Karel Video #4 - Intro. to Functions - YouTube

    This video helps explain where to find examples of functions on codeHS. This helps you navigate the intro lessons on functions and reminds you that you can f...

  7. CodeHS

    Functions. Writing a function is like teaching karel a new word. Naming Functions: You can name your functions whatever you want, but you can't have spaces in the function name. Remember …

  8. The Start Function | Introduction to Computer Science - codehs

    The start() function is the first step in making our program easy to understand by humans and by Karel. We know that all of the commands that we make will be contained inside of the start …

  9. Functions in Karel - YouTube

    Jun 24, 2019 · Let's teach Karel how to learn new commands with functions.CodeHS is a comprehensive computer science teaching platform for middle schools and high schools. ...

  10. Glossary Term: Define a Function - CodeHS

    Defining a function means to write a function with all of the code inside it. Defining a function **does not** run any of the code inside that function. It only teaches the computer what that …