Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~15.6K People Reached
Favorite Tags
Member Avatar for Greyhelm

I am trying to get character matching when comparing two strings. The result would display the two words side by side with the matching (and non-matching) characters displayed. This would be similar to mastermind. Example: (test word) - HALE (sample word) - HELP This would be displayed as: H?L? HELP …

Member Avatar for Greyhelm
0
329
Member Avatar for Greyhelm

I have a strange problem, I have written a for loop to check a list of words for a match and it is not checking all of the words: I am using two files to check for matched words (Enwords.txt - a list of English words and Encontract.txt - a …

Member Avatar for Greyhelm
0
392
Member Avatar for Greyhelm

I just setup a new Dell computer running Windows 7 64-bit copied over the data using Microsoft's Easy Transfer then installed Microsoft Office 2007. However, now when opening an existing Excel 2007 spreadsheet, Excel appears to hang for over a minute before any changes can be made. Are there specific …

Member Avatar for Greyhelm
0
289
Member Avatar for Greyhelm

I am trying to understand using an SQLite database in Python and can grasp running queries, but would like to understand how to populate Python variables from SQLite fields. Here is my sample Python code: [CODE]import sqlite3 id = 0 name = "" occupation = "" location = "" connection …

Member Avatar for richieking
0
4K
Member Avatar for Greyhelm

I have been working further on my text adventure (see thread: [url]http://www.daniweb.com/forums/thread285737.html[/url]) and have come to the part where I would like to manage the change of time (of day) and adjust the date as time passes. I have some code that does it, but was wondering if there is …

Member Avatar for Greyhelm
0
521
Member Avatar for Greyhelm

I am trying to update an occupants list in the class Place, after setting it with: [CODE] places["smith"] = Place( "smith", "This is the Blacksmith's Shop", "grimwo", ("well", "bakery", "mill"), () ) persons["berrol"] = Person("berrol", "bakery", "baker") [/CODE] The classes are setup as: Person / Place [CODE] class Person(object): """ …

Member Avatar for Greyhelm
0
10K