if i create python code with .py and i want my friends get the code and it will work on theme computer (open files and print them).
how can i do that without install.
i mean i dont wont them yto install python.
i can do it as .exe or something?
thanks!
my code is stupid but required here so -
    #!/usr/bin/python
    # Open a file
    fo = open("foo.txt", "r+")
    str = fo.read(10);
    print "Read String is : ", str
    # Close opend file
    fo.close()
 
     
     
    