mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 00:42:11 +01:00
6 lines
134 B
PHP
6 lines
134 B
PHP
<?php
|
|
$itertools = PyCore::import('itertools');
|
|
$result = PyCore::list($itertools->product([1, 2], [3, 4]));
|
|
PyCore::print($result);
|
|
|