Python
Търсене:
search   add   edit   back

cd C:\Python27\Scripts

pip.exe install pyaudio

python -m pip install --upgrade pip

 

Python example games

Operations with files

# fo = open("foo.txt", "wb")
# fo.close()

 

ModesDescription
r Opens a file for reading only. The file pointer is placed at the beginning of the file. This is the default mode.
rb Opens a file for reading only in binary format. The file pointer is placed at the beginning of the file. This is the default mode.
r+ Opens a file for both reading and writing. The file pointer will be at the beginning of the file.
rb+ Opens a file for both reading and writing in binary format. The file pointer will be at the beginning of the file.
w Opens a file for writing only. Overwrites the file if the file exists. If the file does not exist, creates a new file for writing.
wb Opens a file for writing only in binary format. Overwrites the file if the file exists. If the file does not exist, creates a new file for writing.
w+ Opens a file for both writing and reading. Overwrites the existing file if the file exists. If the file does not exist, creates a new file for reading and writing.
wb+ Opens a file for both writing and reading in binary format. Overwrites the existing file if the file exists. If the file does not exist, creates a new file for reading and writing.
a Opens a file for appending. The file pointer is at the end of the file if the file exists. That is, the file is in the append mode. If the file does not exist, it creates a new file for writing.
ab Opens a file for appending in binary format. The file pointer is at the end of the file if the file exists. That is, the file is in the append mode. If the file does not exist, it creates a new file for writing.
a+ Opens a file for both appending and reading. The file pointer is at the end of the file if the file exists. The file opens in the append mode. If the file does not exist, it creates a new file for reading and writing.
ab+ Opens a file for both appending and reading in binary format. The file pointer is at the end of the file if the file exists. The file opens in the append mode. If the file does not exist, it creates a new file for reading and writing.

# fo.write( "Python is a great language.\nYeah its great!!\n")
# str = fo.read(10)
# os.rename( "test1.txt", "test2.txt" )
# os.delete("text2.txt")
# os.mkdir("test")
# os.chdir("/home/newdir")
# os.getcwd()
# os.rmdir( "/tmp/test")
## Check current position
#position = fo.tell();
#print "Current file position : ", position

 

Execute shell command with return in string

import os
p = os.popen('command',"r")
while 1:
    line = p.readline()
    if not line: break
    print line