I have the following data in a text file named "user_table.txt
":
Jane - valentine4Me
Billy
Billy - slick987
Billy - monica1600Dress
Jason - jason4evER
Brian - briguy987321CT
Laura - 100LauraSmith
Charlotte - beutifulGIRL!
Christoper - chrisjohn
And, the following code to read this data and create a Python dictionary:
users = {}
with open("user_table.txt", 'r') as file:
for line in file:
line = line.strip()
# if there is no password
if ('-' in line) == False:
continue
# otherwise read into a dictionary
else:
key, value = line.split('-')
users[key] = value
k= users.keys()
print(k)
if 'Jane' in k:
print('she is not in the dict')
if 'Jane ' in k:
print('she *is* in the dict')
I see that there are trailing spaces in the keys:
dict_keys(['Jane ', 'Billy ', 'Jason ', 'Brian ', 'Laura ', 'Charlotte ', 'Christoper '])
she *is* in the dict
What is the best way to remove the spaces?
Thanks!