https://gcc.gnu.org/onlinedocs/gcc-4.7.0/libstdc++/api/a01065_source.html
00054 #define EXIT_SUCCESS 0
00055 #define EXIT_FAILURE 1
https://gcc.gnu.org/onlinedocs/gcc-4.7.0/libstdc++/api/a01065_source.html
00054 #define EXIT_SUCCESS 0
00055 #define EXIT_FAILURE 1
C:>title "новый заголовок окна"
>>> for i in range(1, 11):
... print(" ".join(map(str, [i*j for j in range(1, 11)])))
...
1 2 3 4 5 6 7 8 9 10
2 4 6 8 10 12 14 16 18 20
3 6 9 12 15 18 21 24 27 30
4 8 12 16 20 24 28 32 36 40
5 10 15 20 25 30 35 40 45 50
6 12 18 24 30 36 42 48 54 60
7 14 21 28 35 42 49 56 63 70
8 16 24 32 40 48 56 64 72 80
9 18 27 36 45 54 63 72 81 90
10 20 30 40 50 60 70 80 90 100
>>> for i in range(1, 11):
... print("".join(map(lambda x: str(x).rjust(4), [i*j for j in range(1, 11)])))
...
1 2 3 4 5 6 7 8 9 10
2 4 6 8 10 12 14 16 18 20
3 6 9 12 15 18 21 24 27 30
4 8 12 16 20 24 28 32 36 40
5 10 15 20 25 30 35 40 45 50
6 12 18 24 30 36 42 48 54 60
7 14 21 28 35 42 49 56 63 70
8 16 24 32 40 48 56 64 72 80
9 18 27 36 45 54 63 72 81 90
10 20 30 40 50 60 70 80 90 100
>>>
Варианты:
taskkill /F /IM rdpclip.exe
>>> import pygame
pygame 2.0.1 (SDL 2.0.14, Python 3.8.10)
Hello from the pygame community. https://www.pygame.org/contribute.html
>>> from pygame.locals import *
>>> pygame.init()
(7, 0)
>>> window = pygame.display.set_mode((800, 600))
>>> window.fill((255, 255, 255))
<rect(0, 0, 800, 600)>
>>> pygame.draw.rect(window, (0, 0, 255), (100, 100, 400, 100), 2)
<rect(100, 100, 401, 101)>
>>> pygame.draw.circle(window, (0, 255, 0),
... [300, 300], 170, 3)
<rect(130, 130, 340, 340)>
>>> pygame.draw.polygon(window, (255, 0, 0),
... [[300, 300], [100, 400],
... [100, 300]])
<rect(100, 300, 201, 101)>
>>> pygame.draw.line(window, (0, 0, 0),
... [100, 300],
... [500, 300], 5)
<rect(100, 298, 401, 5)>
>>> pygame.display.update()
Открыть файл-картинку:
>>> from PIL import Image
>>> image = Image.open("bike.png")
>>> image.show()
>>>
Сгенерировать, сохранить и открыть картинку:
>>> from PIL import Image
>>> from PIL import ImageDraw
>>> i = Image.new("RGB", (200, 200))
>>> d = ImageDraw.Draw(i)
>>> d.ellipse((100, 100, 150, 200), fill='red', outline=(0, 0, 0))
>>> d.rectangle((20, 10, 30, 20), fill='blue', outline=(255, 255, 255))
>>> d.line((35, 20, 45, 10), fill='pink', width=10)
>>> i.save('draw-ellipse-rectangle-line.jpg', quality=95)
>>> i.show()
>>>
>>> import subprocess
>>> subprocess.Popen(["notepad", r"c:\windows\system.ini"])
<subprocess.Popen object at 0x000001E78BFB6400>
>>>
При таком запуске основная программа не будет дожидаться, пока закончит работу запущенная ей другая программа.
-v — что исключить
Пример:
find ./program | grep -v "__pycache__"
@unittest.skip("Причина пропуска: ...")
def test_anything(self):
pass
[Esc]:q!