CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 01:58:42 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=dd0714ddad71a89aee6dac459b53fd577c5dabbcf5e0e8fb68806916b7d01caaa%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22ugDYFq92XizeUgfTGvcNHEAjvgJH75a-%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d2fe602813ad8b-BLR
Batch BMI Calculator - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #! /usr/bin/env python3
- # Решение №1
- def calcBmi1(l): return (list(map((lambda y : y[0] / y[1] ** 2), l)))
- # Решение №2
- def calcBmi2(l): return [y[0] / y[1] ** 2 for y in l]
- # Решение №3
- o = list()
- def calcBmi3(l):
- for i in l:
- o.append(i[0] / i[1] ** 2)
- return o
- # print(calcBmi([(70, 1.7), (80, 1.8), (90, 1.9)]))
Advertisement
Add Comment
Please, Sign In to add comment
-
📌 ChangeNOW Exploit
JavaScript | 2 sec ago | 0.24 KB
-
📌 Instant BTC Profit Method ✅ Working
JavaScript | 11 sec ago | 0.24 KB
-
✅ Make $2500 in 20 minutes⭐⭐⭐ U
JavaScript | 16 sec ago | 0.25 KB
-
⭐⭐⭐Profit Method⭐⭐
Java | 18 sec ago | 0.10 KB
-
📝 MAKE $2500 IN 15 MIN ✅ Working
JavaScript | 21 sec ago | 0.24 KB
-
⭐⭐⭐Make $1500 in 20 minutes⭐⭐
Java | 23 sec ago | 0.10 KB
-
📌 Swapzone +37% glitch ⭐ W
JavaScript | 25 sec ago | 0.25 KB
-
💵 Make 3000$ in 20 minutes 💵
JavaScript | 30 sec ago | 0.24 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