Skip to content

Instantly share code, notes, and snippets.

View jz-feng's full-sized avatar

Jerry Feng jz-feng

View GitHub Profile

Work term report guidelines, July 2017, drafted by Patrick Lam

We hope that writing work-term reports will help you develop your engineering judgment and your writing skills. (Also, work-term reports are required for our accreditation as a co-op university; this accreditation enhances the value of your eventual degree!)

A satisfactory report must explore an engineering decision (or a series of decisions) and justify a choice, either through a comparison with viable alternatives, or by showing how the selection

def meme():
word = raw_input("enter word: ")
for c in word:
print c.upper(), " ",
print
print
for i, c in enumerate(word[1:-1]):
print c.upper(), " " * ((len(word) - 1) * 4 - 3), word[len(word)-i-2].upper()
print
for c in word[::-1]: