Advertisement
Guest User

elso,pont.py

a guest
Jun 13th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. sor = 0
  2. while sor< 10:
  3.     oszlop = 0
  4.     while oszlop < sor+1:
  5.         print(' ', end ='')
  6.         oszlop += 1
  7.     print('o')
  8.     sor += 1
  9.    
  10.    
  11. sor = 0
  12. while sor< 10:
  13.     oszlop = 0
  14.     while oszlop < sor+1:
  15.         print(' ', end ='')
  16.         oszlop += 1
  17.     print('o')
  18.     sor += 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement