$output = shell_exec('python script/test.py');

1
2
3
4
5
6
<?php
$output = shell_exec('python script/test.py');
$array = explode(',', $output);
foreach ($array as $value) {
echo $value;
}