Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 331 Bytes

File metadata and controls

18 lines (14 loc) · 331 Bytes

Name

Stuart Kirwan

Hobby

Playing sports

Fun Fact

I have been on shark week

Programming Background

I have some experience with R and Swift

Interesting Python code

# get a list of all of the letters in the alphabet 
[chr(65+i) for i in range(26)] #uppercase      
[chr(97+i) for i in range(26)] #lowercase