So, when you first start learning how to code, it's a little bit boring. Essentially that's tough luck. Soz. You have to learn the basics first sadly.
BUT. Think of this as grinding. Grind to get the EXP to continue your journey. Learning to program is better than doing boring jobs so.... 🤷🏻♂️
After you've followed some of the basics, we can quit the tutorial and start the basic missions. Here's some tasks to see what you have learned. If you can't do them, it doesn't matter. Get to where you can first then try and Google the answers. Basically, trying to work out how the hell you do something is part of the fun.
Add two numbers like 220 and 10 together and print the result.
Print the result of 200 * 4 + 12
Add the strings "I am" and "Conner McCloud and of the Clan McCloud" and "and I am immortal" together and make string that makes:
"I am Connor McCloud of the Clan Mcloud and I am immortal"
Print the mean average of 5, 10, 32, 4, 5, 23, 4, 4, 5, 2, 1, 5, 6, 7, 3, 4, 4, 5
Explain if you think the mean is the best way to explain the average of the above numbers?
Lists
[5, 10, 32, 4, 5, 23, 4, 4, 5, 2, 1, 5, 6, 7, 3, 4, 4, 5]
Given a list of numbers, print the highest number.
Given a list of numbers, print the lowest number.
Given a list of numbers, print the mean average.
Given a list of numbers, print the median number.
Given a list of numbers, print the mode number.
Given a list of numbers, print the range of the numbers.
Given a list of numbers, print the sum of the numbers.
For each value in the list, print the value squared.
For each value in the list, print the value cubed.
For each value in the list, if it's above the mean, print "above" otherwise print "below".
For each value in the list, print whether it's above or below the mean, median or mode.
Create a file called "myfile.txt" and write the text "Hello, world!" to it.
Read the file "myfile.txt" and print the text to the console.
Create a CSV file with two columns that has values in it like this:
Name, Age Connor, 21 Dominic, 42 Joe, 54 Nikhil, 14 Rohan, 12 Erin, 13 Aoife, 11
Read the CSV file and print the values to the console.
Read the CSV file and print the oldest person only.
Read the CSV file and print the youngest person only.
Read the CSV file and print the name of the coolest person (which one has the most computers)
Read the CSV file and print the name of the person who has the least computers.