Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.
MUZ141065 Diana Shone
2,978 PointsMake this string a raw string 'Hello'
how do i answer that question..i have watched the video but i still dont get it
3 Answers

Humphrey Tinotenda
9,045 Pointsit will be like r'Hello'
man odell
1,905 PointsIf string='a b c d e' # it is a string not array but now If string=['a','b','c','d','e'] # it is raw string (array of characters ) You can use split function to cover it same as : If string='My name is'.split() print(string) # it 'll give that ['My','name','is']

Ong Jia Xin
8,188 Pointsit means you need to use 'r' in front of the string that you want to pass (i.e. Hello)