February 15, 2020 To print PATTERN STAR PATTERN WITH ONE FOR LOOP [#PYTHON] def pattern(rows) : for i in range (rows) : print ( ' * ' * ( i+1 ) )