Вы должны открыть текстовый файл, создать свою строку и написать в нее.
import getpass
# get your username
username = getpass.getuser()
# open a txt file in append mode
log = open('username.txt', 'a')
# create your string
string = os.path.join('..','Documents and Settings',username,'Desktop')
# save and close the file
log.write(string)
log.close()
или вы можете использовать оператор pythons 'with', который обеспечивает корректное закрытие файла.
import getpass
# get your username
username = getpass.getuser()
# create your string
string = os.path.join('..','Documents and Settings',username,'Desktop')
with open('username.txt') as file:
file.write(string)