FAQ: Loops - Review

I can do this in Python easily but can’t figure out the best way to do this in Swift. Any help?

star = “*”

for num in range(1,5):
starCount = “*” * num
print(starCount)