In PHP I use this for script.php?data=something:
$data = $_GET['data'];
echo $data;
Is there a way to do the same in Python when I start the script? Or how can I manage to start a script multiple times with different values?
In PHP I use this for script.php?data=something:
$data = $_GET['data'];
echo $data;
Is there a way to do the same in Python when I start the script? Or how can I manage to start a script multiple times with different values?