I am required to use nested for loops and print(\'*\', end=\' \') to create the pattern shown here:
print(\'*\', end=\' \')
And here is my code. I have figured out the first t
for i in range(1,7): print(" "(7-i)+""*(i))
Output :
* ** ***