Tagged Questions

1
vote
3answers
94 views

Python, context sensitive string substitution

Is it possible to do something like this in Python using regular expressions? Increment every character that is a number in a string by 1 So input "123ab5" would become "234ab6" I know I could ...
1
vote
2answers
92 views

“%” character cause Error in strings substitution with locals()

I try to substitue strings with variables using locals() in python but I can find a way to use the % character inside the string without error. Here is a concrete example : color = ...
0
votes
3answers
116 views

Unable to get results when passing a string via parameter substitution in gql query

I am able to properly pass a string variable to the gqlquery through parameter substitution, here's the code i've tried to use; user_name = self.request.get('username') #retrieved from UI p = ...