Categories
python

Example of Python code – triangle star pattern

Python program description

Build a right angled triangle star pattern in Python Programming language.

Example source code

for i in range(1, 6):
    for j in range(1, i+1):
        print('*', end= " ")
    print ()

Output of program

* 
* * 
* * * 
* * * * 
* * * * * 

শেয়ার বাজারে ট্রেডিং শেখার বই : শেয়ার ট্রেডিং ক্যান্ডেলস্টিক চার্ট ও টেকনিক্যাল অ্যানালিসিস – বিক্রম চৌধুরীর লেখা ৩০০ পাতার বই।