{"id":816,"date":"2020-09-07T04:11:13","date_gmt":"2020-09-07T04:11:13","guid":{"rendered":"http:\/\/learnlearn.uk\/alevelcs\/?page_id=816"},"modified":"2020-09-07T06:08:27","modified_gmt":"2020-09-07T06:08:27","slug":"functions-procedures","status":"publish","type":"page","link":"https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/","title":{"rendered":"Functions &#038; Procedures"},"content":{"rendered":"<div class=\"responsive-tabs\">\n<h2 class=\"tabtitle\">Procedures<\/h2>\n<div class=\"tabcontent\">\n\n<h3>Procedures<\/h3>\n<p>A procedure is a named section of code that can be called(run) anywhere within a program.<\/p>\n<p>All procedures have 2 parts:<\/p>\n<p><strong>The Definition<\/strong><\/p>\n<p>This is where the code section is separated from the rest of the code and given a name. Defining a procedure does nothing until the code is called.<\/p>\n<pre>def hello_world():\r\n\u00a0 \u00a0 print(\"Nice to meet you world\")<\/pre>\n<p><strong>The Call<\/strong><\/p>\n<p>We run a procedure by calling\u00a0 it by its name.<\/p>\n<pre>hello_world() #This will run the hello_world() procedure.<\/pre>\n<p>You can call a function as many times as you like:<\/p>\n<pre>while True:\r\n\u00a0 \u00a0 hello_world() #This will keep running the function inifitely.<\/pre>\n<p>&nbsp;<\/p>\n\n<\/div><h2 class=\"tabtitle\">Functions<\/h2>\n<div class=\"tabcontent\">\n\n<h3>Functions<\/h3>\n<p>A function is similar to a procedure but with one key difference &#8211; it returns a value (or object) to the line where the function was called.<\/p>\n<pre>def gimme_five():\r\n\u00a0 \u00a0 return 5<\/pre>\n<p>You can choose to do whatever you like with the return value.<\/p>\n<pre>print(gimme_five()) #This will print out the number 5\r\n\r\nx = gimme_five() #This will take the return value 5 and set x to be 5<\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n\n<\/div><h2 class=\"tabtitle\">Input Parameters<\/h2>\n<div class=\"tabcontent\">\n\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n\n<\/div><h2 class=\"tabtitle\">Practice<\/h2>\n<div class=\"tabcontent\">\n\n<p>You can practice writing your own functions using these <a href=\"https:\/\/learnlearn.uk\/python\/python-functions-exercises\/\">Python functions challenges.<\/a><\/p>\n<p>&nbsp;<\/p>\n<p>Exam Questions<\/p>\n<p><a href=\"https:\/\/pastpapers.papacambridge.com\/?dir=Cambridge%20International%20Examinations%20%28CIE%29\/AS%20and%20A%20Level\/Computer%20Science%20-%209608\">June 16 Paper 22 Questions 2,3<\/a><\/p>\n<p>&nbsp;<\/p>\n<\/div><\/div>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Procedures A procedure is a named section of code that can be called(run) anywhere within a program. All procedures have 2 parts: The Definition This is where the code section is separated from the rest of the code and given a name. Defining a procedure does nothing until the code is called. def hello_world(): \u00a0&hellip;&nbsp;<a href=\"https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/\" class=\"\" rel=\"bookmark\">Read More &raquo;<span class=\"screen-reader-text\">Functions &#038; Procedures<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"neve_meta_sidebar":"","neve_meta_container":"","neve_meta_enable_content_width":"","neve_meta_content_width":70,"neve_meta_title_alignment":"","neve_meta_author_avatar":"","neve_post_elements_order":"","neve_meta_disable_header":"","neve_meta_disable_footer":"","neve_meta_disable_title":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Functions &amp; Procedures - A Level Computer Science<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Functions &amp; Procedures - A Level Computer Science\" \/>\n<meta property=\"og:description\" content=\"Procedures A procedure is a named section of code that can be called(run) anywhere within a program. All procedures have 2 parts: The Definition This is where the code section is separated from the rest of the code and given a name. Defining a procedure does nothing until the code is called. def hello_world(): \u00a0&hellip;&nbsp;Read More &raquo;Functions &#038; Procedures\" \/>\n<meta property=\"og:url\" content=\"https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/\" \/>\n<meta property=\"og:site_name\" content=\"A Level Computer Science\" \/>\n<meta property=\"article:modified_time\" content=\"2020-09-07T06:08:27+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/\",\"url\":\"https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/\",\"name\":\"Functions & Procedures - A Level Computer Science\",\"isPartOf\":{\"@id\":\"https:\/\/learnlearn.uk\/alevelcs\/#website\"},\"datePublished\":\"2020-09-07T04:11:13+00:00\",\"dateModified\":\"2020-09-07T06:08:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"A Level Computer Science Home\",\"item\":\"https:\/\/learnlearn.uk\/alevelcs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Functions &#038; Procedures\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/learnlearn.uk\/alevelcs\/#website\",\"url\":\"https:\/\/learnlearn.uk\/alevelcs\/\",\"name\":\"A Level Computer Science\",\"description\":\"CIE Specification\",\"publisher\":{\"@id\":\"https:\/\/learnlearn.uk\/alevelcs\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/learnlearn.uk\/alevelcs\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/learnlearn.uk\/alevelcs\/#organization\",\"name\":\"A Level Computer Science\",\"url\":\"https:\/\/learnlearn.uk\/alevelcs\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/learnlearn.uk\/alevelcs\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/learnlearn.uk\/alevelcs\/wp-content\/uploads\/sites\/20\/2019\/09\/LearnLearnLogowhite.png\",\"contentUrl\":\"https:\/\/learnlearn.uk\/alevelcs\/wp-content\/uploads\/sites\/20\/2019\/09\/LearnLearnLogowhite.png\",\"width\":710,\"height\":98,\"caption\":\"A Level Computer Science\"},\"image\":{\"@id\":\"https:\/\/learnlearn.uk\/alevelcs\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Functions & Procedures - A Level Computer Science","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/","og_locale":"en_GB","og_type":"article","og_title":"Functions & Procedures - A Level Computer Science","og_description":"Procedures A procedure is a named section of code that can be called(run) anywhere within a program. All procedures have 2 parts: The Definition This is where the code section is separated from the rest of the code and given a name. Defining a procedure does nothing until the code is called. def hello_world(): \u00a0&hellip;&nbsp;Read More &raquo;Functions &#038; Procedures","og_url":"https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/","og_site_name":"A Level Computer Science","article_modified_time":"2020-09-07T06:08:27+00:00","twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/","url":"https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/","name":"Functions & Procedures - A Level Computer Science","isPartOf":{"@id":"https:\/\/learnlearn.uk\/alevelcs\/#website"},"datePublished":"2020-09-07T04:11:13+00:00","dateModified":"2020-09-07T06:08:27+00:00","breadcrumb":{"@id":"https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/learnlearn.uk\/alevelcs\/functions-procedures\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"A Level Computer Science Home","item":"https:\/\/learnlearn.uk\/alevelcs\/"},{"@type":"ListItem","position":2,"name":"Functions &#038; Procedures"}]},{"@type":"WebSite","@id":"https:\/\/learnlearn.uk\/alevelcs\/#website","url":"https:\/\/learnlearn.uk\/alevelcs\/","name":"A Level Computer Science","description":"CIE Specification","publisher":{"@id":"https:\/\/learnlearn.uk\/alevelcs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/learnlearn.uk\/alevelcs\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/learnlearn.uk\/alevelcs\/#organization","name":"A Level Computer Science","url":"https:\/\/learnlearn.uk\/alevelcs\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/learnlearn.uk\/alevelcs\/#\/schema\/logo\/image\/","url":"https:\/\/learnlearn.uk\/alevelcs\/wp-content\/uploads\/sites\/20\/2019\/09\/LearnLearnLogowhite.png","contentUrl":"https:\/\/learnlearn.uk\/alevelcs\/wp-content\/uploads\/sites\/20\/2019\/09\/LearnLearnLogowhite.png","width":710,"height":98,"caption":"A Level Computer Science"},"image":{"@id":"https:\/\/learnlearn.uk\/alevelcs\/#\/schema\/logo\/image\/"}}]}},"rttpg_featured_image_url":null,"rttpg_author":{"display_name":"learnlearnadmin","author_link":"https:\/\/learnlearn.uk\/alevelcs\/author\/learnlearnadmin\/"},"rttpg_comment":0,"rttpg_category":null,"rttpg_excerpt":"Procedures A procedure is a named section of code that can be called(run) anywhere within a program. All procedures have 2 parts: The Definition This is where the code section is separated from the rest of the code and given a name. Defining a procedure does nothing until the code is called. def hello_world(): \u00a0&hellip;&nbsp;Read&hellip;","_links":{"self":[{"href":"https:\/\/learnlearn.uk\/alevelcs\/wp-json\/wp\/v2\/pages\/816"}],"collection":[{"href":"https:\/\/learnlearn.uk\/alevelcs\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/learnlearn.uk\/alevelcs\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/learnlearn.uk\/alevelcs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/learnlearn.uk\/alevelcs\/wp-json\/wp\/v2\/comments?post=816"}],"version-history":[{"count":4,"href":"https:\/\/learnlearn.uk\/alevelcs\/wp-json\/wp\/v2\/pages\/816\/revisions"}],"predecessor-version":[{"id":823,"href":"https:\/\/learnlearn.uk\/alevelcs\/wp-json\/wp\/v2\/pages\/816\/revisions\/823"}],"wp:attachment":[{"href":"https:\/\/learnlearn.uk\/alevelcs\/wp-json\/wp\/v2\/media?parent=816"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}