diff --git a/1-hello-world/block-letters/initials.py b/1-hello-world/block-letters/initials.py index 79968fb..47de016 100644 --- a/1-hello-world/block-letters/initials.py +++ b/1-hello-world/block-letters/initials.py @@ -1,10 +1,23 @@ -# Sonny Li -# Fun Fact: I played guitar in a band called Attica. +# Darshan Sharma +# Fun Fact: I am the best -print(" SSS L ") -print(" S S L ") -print(" S L ") -print(" SSS L ") -print(" S L ") -print(" S S L ") -print(" SSS LLLLL ") \ No newline at end of file +fName = ''' + DDDD +D D +D D +D D +D D +D D + DDDD''' +lName = ''' + SSSSS + S +S + S + SSSSS + S + S + S +SSSS''' + +print(fName+" "+"arshan"+lName+"harma") \ No newline at end of file