join best quality content folder
Are you looking to enhance your coding skills and learn more about Python programming? Look no further than the 'PYTHON PROGRAMMING' channel on Telegram, managed by @pythons_n. With a focus on educating users on all things related to coding, this channel is the perfect place to improve your programming abilities. The channel owner, @imabhi3030, is dedicated to helping you succeed and is always available to provide assistance. Whether you are a beginner or an experienced coder, 'PYTHON PROGRAMMING' is the ideal community to join for support and knowledge sharing. Join us today and take your Python programming skills to the next level! ๐
11 Nov, 16:21
10 Nov, 02:44
09 Nov, 04:00
n = 5
for i in range(n):
print("*" * (i+1))
*
**
***
****
*****
n = 5
for i in range(1, n+1):
for j in range(1, i+1):
print(j, end=" ")
print()
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
n = 5
for i in range(n):
print(" " * (n-i-1) + "*" * (2*i+1))
*
***
*****
*******
*********
n = 5
for i in range(n):
print(" " * (n-i-1) + "*" * (2*i+1))
for i in range(n-2, -1, -1):
print(" " * (n-i-1) + "*" * (2*i+1))
*
***
*****
*******
*********
*******
*****
***
*
n = 5
for i in range(n):
for j in range(i+1):
print(chr(65+j), end=" ")
print()
A
A B
A B C
A B C D
A B C D E
07 Nov, 10:08
05 Nov, 16:03