Python
- 10 ответов
- 0 вопросов
10
Вклад в тег
pip install pygame
import pygame
_PNG_IMAGE = 'kitten-and-puppy.png'
pygame.display.init()
img = pygame.image.load(_PNG_IMAGE)
screen = pygame.display.set_mode(img.get_size(), pygame.FULLSCREEN)
screen.blit(img, (0, 0))
pygame.display.flip()
input()
pygame.quit()
два объекта с непересекающимся временем жизни могут иметь одинаковый id
agluhov@forge:~$ python
Python 2.7.15rc1 (default, Apr 15 2018, 21:51:34)
[GCC 7.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> s = 'test_string'
>>> id(s[1:5]) == id(s[2:6])
True
>>> id(s[1:5])
139620785926528
>>> id(s[2:6])
139620785926528
>>> print(id(s[1:5]))
139620785926384
>>> print(id(s[2:6]))
139620785926576
>>> print(id(s[1:5]), id(s[2:6]))
(139620785926528, 139620785926528)