Ok, so i have the loop that creates the shape below, but instead of spaces, it has solid # signs.
I can't figure out how to just get the design I showed below. Where am I going wrong in my code?
NUM_STEPS = 6
def main():
for r in range(NUM_STEPS):
for c in range (r):
print ('#',end='')
print('#')
main()
##
# #
# #
# #
# #
# #