I have to include the following text in a python string:
<table style="width:100%">
But since python uses the " sign to start and close strings, when i try to put the code above into a python string the part - <table style= is recognized as a string but the second part isn't because python recognize the " sign as the end of the string.
How can I solve this problem ? Thank you in advance