Python Exercise: Print alphabet pattern T
Python Conditional: Exercise - 27 with Solution
Write a Python program to print the alphabet pattern 'T'.
Pictorial Presentation:

Sample Solution:
Python Code:
result_str="";
for row in range(0,7):
for column in range(0,7):
if (column == 3 or (row == 0 and column > 0 and column <6)):
result_str=result_str+"*"
else:
result_str=result_str+" "
result_str=result_str+"\n"
print(result_str);
Sample Output:
***** * * * * * *
Flowchart :

Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to print the following pattern 'S'.
Next: Write a Python program to print alphabet pattern 'U'.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join