Skip to main content

Posts

Featured

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

Latest Posts

To print PATTERN : 55555 54444 54333 54322 54321

Addition of TWO numbers WITHOUT USING " + " Sign

Decimal To Binary With Simple Logic