I am building a program to write new values to a dbf based on different conditions but I am having an issue with python not recognizing text values as a part of if/else statements.
if I have "col1" filled with true/false values and I want to say:
my_table.add_fields('col2 N(2,0)')
for record in dbf.Process(my_table):
if record.col1 == 'true':
record.col2 = 1
else:
record.col2 = 2
How do I get python to recognize 'true/false' as a value as a part of that statement?
What data type is
col1
? Basic dbf data types areChar
(text),Date
(datetime),Logical
(boolean)Number
(integer/float),Float
(integer/float), andMemo
(unbounded text).If
col1
is not a Char field, comparing to a string will always return False. Ifcol1
is a Char field, then it will compare equal only whencol1
is excatly 'true' -- not 'true ' or 'True' or 'TRUE'.If the problem is extra spaces (by default my module returns the entire field, including trailing spaces) you can either do:
or tell
dbf.Table
to use a customChar
type that ignores trailing spaces: