comment faire un motif en python en une seule ligne

print("\n".join(str(ele) for ele in [" ".join(str(e) for e in ["*" for _ in range(i+1)]) for i in range(10)]))
Lonely Louse