List = []

List.append({
    "Name": "Alan",
    "Role": "Backend developer",
    "Fun Facts": ["Does swim","is the developer of the fastpages you are reading right now"]
})


List.append({
    "Name": "Noor",
    "Role": "Frontend developer",
    "Fun Facts": ["Does MMA", "is the only junior in the scrum team"]
})

List.append({
    "Name": "Steven",
    "Role": "Scrum master",
    "Fun Facts": ["Alan and Steven were in the same AP Chinese class last year", "is very experienced at coding"]
})

List.append({
    "Name": "Ederick",
    "Role": "DevOps",
    "Fun Facts": ["Does swim", "and is also really cracked at it. He was one of the best varsity swimmers last year"]
})

print(List)
def print_data(record):
    print(record["Name"])  # using comma puts space between values
    print("\t", "Role:", record["Role"]) # \t is a tab indent
    print("\t", "Fun Facts: ", end="")  # end="" make sure no return occurs
    print(", ".join(record["Fun Facts"]))  # join allows printing a string list with separator
    print()


# for loop iterates on length of List
def for_loop():
    print("Members of the scrum team:\n")
    for record1 in List:
        print_data(record1)

for_loop()
Members of the scrum team:

Alan
	 Role: Backend developer
	 Fun Facts: Does swim, is the developer of the fastpages you are reading right now

Noor
	 Role: Frontend developer
	 Fun Facts: Does MMA, is the only junior in the scrum team

Steven
	 Role: Scrum master
	 Fun Facts: Alan and Steven were in the same AP Chinese class last year, is very experienced at coding

Ederick
	 Role: DevOps
	 Fun Facts: Does swim, and is also really cracked at it. He was one of the best varsity swimmers last year

Purpose = []

Purpose.append({
    "Reason": "To make students lives easier with automated homework and event planning",
    "Importance": "This helps to save students' time"
})

Purpose.append({
    "Reason": "To help organize canvas assignments",
    "Importance": "This helps to make things more organized and will help extend canvas to make things better in the website"
})

print(Purpose)
def print_data(record2):
    print("\t", "Reason:", record2["Reason"]) # \t is a tab indent
    print("\t", "Importance:", record2["Importance"])  # end="" make sure no return occurs
    print()


# for loop iterates on length of List
def for_loop():
    print("This is the purpose of this project:\n")
    for record in Purpose:
        print_data(record)

for_loop()
This is the purpose of this project:

	 Reason: To make students lives easier with automated homework and event planning
	 Importance: This helps to save students' time

	 Reason: To help organize canvas assignments
	 Importance: This helps to make things more organized and will help extend canvas to make things better in the website