We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b06821 commit a954358Copy full SHA for a954358
Doormat Design.py
@@ -0,0 +1,6 @@
1
+N, M = map(int,raw_input().split()) # More than 6 lines of code will result in 0 score. Blank lines are not counted.
2
+for i in xrange(1,N,2):
3
+ print ('.|.'*i).center(M,'-')
4
+print "WELCOME".center(M,'-')
5
+for i in xrange(N-2,-1,-2):
6
0 commit comments