Guest User

Untitled

a guest
Oct 23rd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $p = 123456789101112
  2. $pyscript = 'C:\Users\python\teste.py';
  3. $python = 'C:\Python34\python.exe';
  4. $run = shell_exec("$python $pyscript $p");
  5.  
  6. import sys
  7. print(sys.argv[1])
  8.  
  9. precision 14
  10.  
  11. $p = '123456789111315171921'; // note as aspas aqui
  12. $pyscript = 'C:\Users\python\teste.py';
  13. $python = 'C:\Python34\python.exe';
  14. $run = shell_exec("$python $pyscript $p");
Add Comment
Please, Sign In to add comment