Untitled
unknown
plain_text
2 years ago
533 B
5
Indexable
def generate_flowchart():
flowchart = [
"Project Acquisition Process",
"|",
"Procurement Process",
"|",
"Project Planning and Scheduling Process",
"|",
"Construction Execution Process",
"|",
"Project Monitoring and Control Process",
"|",
"Project Completion and Handover Process"
]
return flowchart
# Generate and print the flowchart
flowchart = generate_flowchart()
for process in flowchart:
print(process)
Editor is loading...