Alphabet Pattern 'V' in PythonSourabh Somani11yPublished Nov 2, 2015, 12:00 AMUpdated Nov 2, 2015, 3:45 AM21.2k03Reactions×25BlogCode:str=""; for Row in range(0,7): for Col in range(0,7): if (((Col == 1 or Col == 5) and Row < 5) or (Row == 6 and Col == 3) or (Row == 5 and (Col == 2 or Col == 4))): str=str+"*" 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.