A pattern code

Write a Program to print the following pattern :

                  **
                ** **
              ** ** **
            ** ** ** **
          ** ** ** ** **
        ** ** ** ** ** **
      ** ** ** ** ** ** **
    ** ** ** ** ** ** ** **
  ** ** ** ** ** ** ** ** **
** ** ** ** ** ** ** ** ** **

sp=10
for r in range(1, 11):
    for s in range(1, sp):
        print(end="  ")
    for c in range(1, r+1):
        print("*"*2, end=" ")
    sp-=1
    print()