以下のコードで星印のパターンを作成する場合、3行目に表示される星の数はいくつですか? ```python for row in range(1, 5): for star in range(row): print("*", end="") print() ```