One does not simply

Third Task: 
Next task was based on the meme from Lord of the Rings.Within this I learnt how to join messages using + between each phrase, to add spaces between phrases by using + "" + in between each one and about quotations marks.You can use singe or double I need to remember to open and close with the same type and to use different ones for quoting something . The program I had to write needed to be able to enter a verb and change the phrase "One does not simply walk into modor," into the verb you want. To do this I put the code in a variable and printed the phrase with the variable in between ('One does not simply "' + verb + '" into Mordor!') 



Hello to you too

Second Task: 
The second task was introducing input. Input is used when you want the user to enter information. In this task it wanted me to write a code in which asks "What your name is?" and says hello to that name. This required me to input the question within a variable, and print hello with the variable .




Hello World

Week 1 Part 1 of the NCSS competition involved learning all the basics of Python. Personally I have never coded in python before, so everything was new to me. The first task was simply to write a program that will print Hello, World! Grok takes you through what you need to know ,such as in this task I learn't how to use print and about errors such as SyntaxError or NameError.These appear when the code doesn't work for some reason eg Spelling,Quotation marks . 



Echo…..Echo…..Echo…..

Fourth Task:
Echo involved the same skills that I learnt from "One does not simply.." but in a different form. The program need you to be able to enter something to shout for it to echo. Like the other previous one I put it in a variable with the input of shout and printed it with quotation between for spaces. ( word +" "+ word +" "+ word)