- 1
Do you have source code of A alphabet pattern?
2 Réponses
+ 4
You should ask this question on YouTube comment section instead of here...
0
[Python]
n=10
for i in range(1,n+1):
 print(' '*(n-i),end='')
 print('**',end='')
 
 if i==6 or i==7:
    print('*'*((2*i)-1),end='')
 else:
    print(' '*((2*i)-1),end='')
 
 print('**',end='')
 print()






