| Reply | « Previous Thread | Next Thread » |
|
my application code:
Code:
. . . . . . f=open (c://a.txt','w') fwrite(x) but i see error' f.write(x) UnicodeError: ASCII encoding error: ordinal not in range (128) how can i solve this problem |
| cool_eagle |
| View Public Profile |
| Find all posts by cool_eagle |
|
Join Date: Oct 2007
Posts: 2,841
Location: Deva, Romania
Offline
Forum Nokia Champion
|
|
|
Quote:
![]() |
|
Join Date: Feb 2008
Posts: 2,542
Location: Bhavnagar, Gujarat, India
gaba88
Offline
Forum Nokia Champion
|
|
hi cooll_eagle
bogdan is correct that you have to post the whole code. BTW you can also try following sort of code: Code:
logfile = open('c://key.txt','a')
logfile.write(f)
logfile.close()
Enjoy Pythoning Gargi Das- http://gargidas.blogsot.com Forum Nokia Python Wiki Learn Python at http://mobapps.org/PyS60 |
|
Code:
import contacts db=contacts.open() names=[db[r].title for r in db] r=appuiwf.selection_list(names,search_field=1) x=names[r] f=open (c://a.txt','w') fwrite(x) ![]() |
| cool_eagle |
| View Public Profile |
| Find all posts by cool_eagle |
|
Join Date: Oct 2007
Posts: 2,841
Location: Deva, Romania
Offline
Forum Nokia Champion
|
|
|
Quote:
This corrected version should work: Code:
import contacts, appuifw
db=contacts.open()
names=[db[r].title for r in db]
r=appuifw.selection_list(names,search_field=1)
x=names[r]
f=open ('c://a.txt','w')
f.write(x)
f.close()
|
|
Join Date: Feb 2008
Posts: 2,542
Location: Bhavnagar, Gujarat, India
gaba88
Offline
Forum Nokia Champion
|
|
|
Quote:
after ignoring all your typos hope they are actual typos and as you have opened a file you have to close it too so you have to add Code:
f.close() Gargi Das- http://gargidas.blogsot.com Forum Nokia Python Wiki Learn Python at http://mobapps.org/PyS60 |
| Reply | « Previous Thread | Next Thread » |
| Thread Tools | Search this Thread |
|---|---|
| Rate This Thread | |
| Thread | Thread Starter | Forum | Replies | Last Post |
|---|---|---|---|---|
| some problem in firmware 6680 V 5.04.07 | man2007 | General Symbian C++ | 1 | 2007-01-26 18:36 |
| About 6230 Bt Problem | eerkek | Bluetooth Technology | 17 | 2005-02-08 13:33 |
| Problem: Photo application. Works on Nokia 7650, not on 6600 | andreas84 | General Symbian C++ | 1 | 2004-06-28 09:48 |
| 7210 Silent Problem | MarkMckim | Mobile Java General | 1 | 2003-03-18 13:36 |
| utf-8 problem when i save a file using notepad? | simon3000 | Browsing and Mark-ups | 0 | 2002-06-13 11:51 |