CARVIEW |
Select Language
HTTP/2 200
date: Mon, 13 Oct 2025 21:31:28 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=a36126748a6dc1d182c868e8a82dbea6e0c0bec8a06c906e8764ba5c805fb0f0a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%227nCbngwwMAwYRLeCycicea5y2m5vHHKt%22%3B%7D; HttpOnly; Path=/
cf-ray: 98e1f1ababee9dfa-BLR
python lab (13/02/2024) - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- *
- * *
- * * *
- * * * *
- * * * * *
- rows = 5
- for i in range(0, rows):
- for j in range(0, i + 1):
- print("*", end=' ')
- print()
- 1
- 2 2
- 3 3 3
- 4 4 4 4
- 5 5 5 5 5
- rows = 6
- for i in range(rows):
- for j in range(i):
- print(i, end=' ')
- print('')
- 1
- 1 2
- 1 2 3
- 1 2 3 4
- 1 2 3 4 5
- rows = 5
- for i in range(1, rows + 1):
- for j in range(1, i + 1):
- print(j, end=' ')
- print('')
- 1
- 2 3
- 4 5 6
- 7 8 9 10
- 11 12 13 14 15
- rows = 5
- counter = 1
- for i in range(1, rows + 1):
- for j in range(1, i + 1):
- print(counter, end=' ')
- counter += 1
- print('')
- *
- * *
- * * *
- * * * *
- * * * * *
- size = 5
- m = (2 * size) - 2
- for i in range(0, size):
- for j in range(0, m):
- print(end=" ")
- m = m - 1
- for j in range(0, i + 1):
- print("* ", end=' ')
- print(" ")
- ''' OR
- n = 5
- for i in range(n):
- print(' '*(n-i-1) + '* ' * (i))
- print()
- '''
- * * * * *
- * * * *
- * * *
- * *
- *
- size = 5
- m = 0
- for i in range(size, 0, -1):
- for j in range(0, m):
- print(end=" ")
- m = m + 1
- for j in range(0, i):
- print("* ", end=' ')
- print(" ")
- ''' OR
- n = 5
- for i in range(n-1,-1,-1):
- print(' ' * (n - i - 1) + '* ' * (i))
- '''
- *
- * *
- * * *
- * * * *
- * * *
- * *
- *
- rows = 3
- k = 2 * rows - 2
- for i in range(0, rows):
- for j in range(0, k):
- print(end=" ")
- k = k - 1
- for j in range(0, i + 1):
- print("* ", end="")
- print("")
- k = rows - 2
- for i in range(rows, -1, -1):
- for j in range(k, 0, -1):
- print(end=" ")
- k = k + 1
- for j in range(0, i + 1):
- print("* ", end="")
- print("")
- '''OR
- n = 3
- for i in range(n):
- print(' '*(n-i-1) + '*' * (2*i+1))
- for i in range(n-2,-1,-1):
- print(' ' * (n - i - 1) + '*' * (2 * i + 1))'''
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐⭐⭐Exchange Exploit T I⭐⭐
Java | 5 sec ago | 0.15 KB
-
🚀 Swapzone +37% glitch
JavaScript | 10 sec ago | 0.24 KB
-
⭐⭐⭐MAKE $9OO INSTANTLY D M⭐⭐
Java | 18 sec ago | 0.15 KB
-
🚨 Free Crypto Method 🚨
JavaScript | 19 sec ago | 0.24 KB
-
💡 Instant BTC Profit Method ✅ Working
JavaScript | 30 sec ago | 0.24 KB
-
⭐⭐⭐GMAIL Logs (2FA disabled)⭐⭐
Java | 34 sec ago | 0.15 KB
-
📝 MAKE $2500 IN 15 MIN ✅ Working
JavaScript | 41 sec ago | 0.24 KB
-
⭐⭐⭐Make $1500 in 20 minutes⭐⭐
Java | 46 sec ago | 0.15 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand