Run ❯
Get your
own Python
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
import uuid id1 = uuid.uuid4() id2 = uuid.uuid4() print(f'UUID 1: {id1}') print(f'UUID 2: {id2}') print(f'Are they equal? {id1 == id2}')
UUID 1: 3c6e0b8a-5e9c-4f3b-9d2a-1e8f7c6b5a4d
UUID 2: 7f2d1b9e-4c8a-3d7f-6e5b-2a9c8d7e6f5a
Are they equal? False