Compare commits

..

No commits in common. "main" and "silliness" have entirely different histories.

11 changed files with 1 additions and 53 deletions

View File

View File

View File

View File

@ -1,4 +1,4 @@
x = 5
x = 6
if x == 5:
print("True")

9
README
View File

@ -16,19 +16,10 @@ Exercises are contained in files as well (for instance, exercise 1 is contained
Read the comment and do what it instructs you to do.
Run the exercise.
+---------------+
| Prerequisites |
+---------------+
The following must be downloaded and installed:
- Python
- Git
+------+
| Plan |
+------+
Day 1 {
Lessons 1-5
Exercises 1-5
}

5
e1.py
View File

@ -1,5 +0,0 @@
# Exercise 1
# Task:
'''
Create a program that prints "Hello"
'''

5
e2.py
View File

@ -1,5 +0,0 @@
# Exercise 2
# Task:
'''
Create two variables, one equalling 5 and the other equalling 10, and print the sum
'''

13
e3.py
View File

@ -1,13 +0,0 @@
# Exercise 3
# Task:
'''
Print the following:
- Sum of 5 and 10
- Difference of 5 and 10
- Product of 5 and 10
- Quotient of 5 and 10
- Remainder of 5 and 10
Do not use variables.
'''

7
e4.py
View File

@ -1,7 +0,0 @@
# Exercise 4
# Task:
'''
Create a variable that is equal to 5.
Use an if statement to print "True" if the variable is equal to 5.
'''

7
e5.py
View File

@ -1,7 +0,0 @@
# Exercise 5
# Task
'''
Create a variable that is equal to 10
If the variable is equal to 5, print "True", otherwise print "False"
'''

6
l5.py
View File

@ -1,6 +0,0 @@
x = 10
if x == 5:
print("True")
else:
print("False")