Wednesday, April 15, 2020

design pattern example in python

n, m = map(int,input().split())
pattern = [('.|.'*(2*i + 1)).center(m, '-'for i in range(n//2)]
print('\n'.join(pattern + ['WELCOME'.center(m, '-')] + pattern[::-1]))

output:
  • ---------.|.---------
  • ------.|..|..|.------
  • ---.|..|..|..|..|.---
  • -------WELCOME-------
  • ---.|..|..|..|..|.---
  • ------.|..|..|.------
  • ---------.|.---------


No comments:

Post a Comment

python class topic video