Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- num = int(input())
- for i in range(1, num + 1):
- output = ''
- for j in range(i):
- output += '$' + ' '
- print(output)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement