Is It possible to have reference variables like in PHP

ex.

<?php

$x = 1;
$y =& $x;

$y += 1;

echo $x;
echo "\n"
echo $y;

?>

This would show

2
2

Is this available in python?

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to