Repo to hold code projects from Python Developer course on Linkedin Learning
Course: Learning Python
Lesson 1: Building Hello World
Created hello world application calling the main function using
if __name__ == "__main__":
main()
Lesson 2: Variable and Expressions
created variables, learned about scope and re-assignment, also learnt about the del function which clear a previously declared variable
Lesson 3: Python Functions
Learned how to build basic functions taking variable amounts of arguments
Lesson 4: Conditional Statements
learned how to build conditional statement with if, elif and else also learnt to build compound conditional statements of the form
st = "This will print if x is greater than y" if(x > y) else ("this will print if y is greater than x)
Lesson 5: Loops
learned how to build loops in python using while and for. also learned how to get the the loop index using enumerate
days = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]
for i,d in enumerate(days):
print(i, d)
this would print the day of the week and the loop index. the day of the week would be held in d and the loop index in the variable i
Test to see if i can sign commit
Second test to see if commit is signed
Added Coding Challenges to github repository 30/07/2019