Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Regular Expressions in Python Introduction to Regular Expressions The Basics

Regular expressions in Python Task 5 of 5

Hey guys...need help, don't know what's wrong here...I am getting "task 1 no longer passing"

basics.py
import re

with open("basics.txt") as open_file:
  file_object = open_file
  data = file_object.read()
  file_object.close()

  first = re.match(r'Four', data)
print(first)

file_object =r.search(liberty)

2 Answers

import re

file_object = open('basics.txt')

data = file_object.read()

file_object.close()

first = re.match(r'Four', data)

liberty = re.search(r'Liberty', data)

Hi,

Your last line just doesn't make much sense:

file_object =r.search(liberty)

There is no variable defined with the name r. Also there is no variable liberty either.

I am assuming that you are trying to search for the string "liberty" in the data you've just read from the file. in which case you may want to do something like:

file_object = re.search(r"liberty", data)

NOTE: I would rename the file_object variable to something else since the re.search function returns a reg-ex match object (not a file handler).

Hope this helps.

Thanks but it still was not passing. After hours of headaches i realized that I had to put a capital letter "L" for liberty:(

Yes, it is very difficult to debug Python code in workspaces. There's virtual no feedback or error messages which can guide you on the right path. Usually what I do is to copy/paste the code in a script file locally, and run it directly with the python interpreter on my machine.

Oh okay...never thought of running on the python interpreter...we now do that, thanks mate:)