[img]https://i.sstatic. net/M63QosMp.jpg[/img]
Пока мне удалось создать только эту фигуру

rows = 21 # Height of the letter R
cols = 20 # Width of the letter R
for i in range(rows + 2): # Adding 2 for top and bottom border
for j in range(cols + 2): # Adding 2 for left and right border
# Print a border of asterisks
if i == 0 or i == rows + 1 or j == 0 or j == cols + 1:
print("*", end=" ")
# Print the letter "R"
elif j == 1 and (i > 0 and i < rows + 1): # Left vertical line
print("*", end=" ")
elif i == 1 and j < cols: # Top horizontal line of R
print("*", end=" ")
elif i == rows // 2 and j < cols: # Middle horizontal line of R
print("*", end=" ")
elif (i - j == 1) and (i > rows // 2): # Diagonal line of R
print("*", end=" ")
else:
print(" ", end=" ") # Space inside the R
print() # Move to the next line
Подробнее здесь: https://stackoverflow.com/questions/791 ... ter-r-2120