>>> num_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
>>> len_num_list = len(num_list) + 1
>>> start_slice = 0
>>> for i in range(5, len_num_list, 5):
print(num_list[start_slice:i])
start_slice += i
[1, 2, 3, 4, 5]
[6, 7, 8, 9, 10]
>>> import random
>>> new_num_list = num_list[:]
>>> random.shuffle(new_num_list)
>>> start_slice = 0
>>> for i in range(5, len_num_list, 5):
print(new_num_list[start_slice:i])
start_slice += i
[8, 2, 9, 3, 6]
[10, 1, 4, 7, 5]
class FivePrintList(list):
def __init__(self, *args):
super(FivePrintList, self).__init__(args)
self.cursor = 0
def print_five(self):
cursor = self.cursor
next_cursor = cursor + 5
print(self[cursor:next_cursor])
self.cursor = next_cursor
users = FivePrintList('lol', 'lol', 'lol', 'lol', 'lol', 'lol', 'lol', 'lol', 'lol')
users.print_five()
users.print_five()
users.print_five()
users.print_five()
# Напечатает:
# ['lol', 'lol', 'lol', 'lol', 'lol']
# ['lol', 'lol', 'lol', 'lol']
# []
# []
from bottle import response
@route('/<width:int>/<height:int>')
def index(width, height):
...
image = Cubic(width=width, height=height, filename=randomname, cube_size=90)
image.paint()
img_bytes = open(randomname, 'rb').read()
os.remove(randomname)
response.set_header('Content-type', 'image/png')
return img_bytes
Можно ли настроить мак на двоих пользователей?да хоть 100500.
Просто я захожу в "Пользователи и группы" и мне просто предлагают создать новую учетную запись с настройкой одно лишь имени и выбора пароля.а что там еще должно быть?
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [L]
</IfModule>
$path = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);