I have a file values.txt with hierarchical formatting like this:
group1
subgroup1
value1
value2
group2
subgroup2
value3
value4
if in bash i execute
echo $(cat values.txt)
I will get the output:
group1 subgroup1 value1 value2 group2 subgroup2 value3 value4
I would like to get this string formatted the same exact way from inside the python script, so it will be very easy to split it by whitespace for further processing.
Thanks!
[\t\n\r ]+to get a list. – Byron Whitlock Aug 15 '11 at 19:18