Alphabet Pattern 'K' in PythonSourabh Somani11yPublished Nov 2, 2015, 12:00 AMUpdated Nov 2, 2015, 1:45 AM30.3k03Reactions×25BlogCode:str=""; j = 5; i = 0; for Row in range(0,7): for Col in range(0,7): if (Col == 1 or ((Row == Col + 1) and Col != 0)): str=str+"*" elif (Row == i and Col == j): str=str+"*" i=i+1 j=j-1 else: str=str+" " str=str+"\n" print(str); Output: CommentsJoin the conversation! Your thoughts help the community grow.Sign in to leave a commentIt is the same account you read, post and publish with — and you will come straight back to this page.Sign inCreate an account
Join the conversation! Your thoughts help the community grow.