A4 Homework for COM306 Software Engineering Due: 9/18/2020 5:00pm.
For lesson 1, the goal is to learn how to format text using github flavor of markdown, create lists (numbered and bulleted), create tables and add links and images to the document.
Simple text is easy. Start with a new line and add your text.
You can add different levels of headers easily.
For creating Bold simply add ** before and after the characters.
For creating Strikethrough add ~~ around text. Make sure to not leave any spaces between text and these special characters
For creating italics simply use * or _ around text
These can be combined around text text to create italic bold
The text in the previous section can be turned into list with bullets or numbers
- For creating Bold simply add ** before and after the characters.
- For creating
Strikethroughadd ~~ around text. Make sure to not leave any spaces between text and these special characters - For creating italics simply use * or _ around text
- These can be combined around text text to create italic bold
- For creating Bold simply add ** before and after the characters.
- For creating
Strikethroughadd ~~ around text. Make sure to not leave any spaces between text and these special characters - For creating italics simply use * or _ around text
- These can be combined around text text to create italic bold
- Task 1
- Task 2
- Task 3
- Task 4 is not complete
Markdown has many flavors. For GitHub readme files, remember to use the related syntax.
c1 | c2 | c3 |
---|---|---|
a1 | b1 | c1 |
a2 | b2 | c2 |
a3 | b3 | c3 |
import unittest
class TestSum(unittest.TestCase):
def test_list_int(self):
"""
Test that it can sum a list of integers
"""
data = [1, 2, 3]
result = sum(data) self.assertEqual(result, 6)
if __name__ == '__main__':
unittest.main()
This link to GitHub Markdown Reference was created using the following syntax
[text](URL)
![Alt Text](URL)