fork download
  1. import string
  2. sellerText = "please describe your issue including asins if possible asin_id is a parent listing with variation theme as sizename-colorname i cannot add more child listings and the following is the error message i received please kindly fixed the issue thanks the variation theme you selected previously is no longer available in this category you can still edit existing variations but you cannot add a new variation asin or sku (optional) asin_id"
  3.  
  4. printable = set(string.printable)
  5. sellerText2 = "".join(list(filter(lambda x: x in printable, sellerText)))
  6.  
  7. print (sellerText2)
  8. print ("==============")
  9. sellerText3 = "".join([x for x in sellerText if x in printable])
  10.  
  11. print (sellerText3)
Success #stdin #stdout 0.02s 9636KB
stdin
Standard input is empty
stdout
please describe your issue including asins if possible asin_id is a parent listing with variation theme as sizename-colorname i cannot add more child listings and the following is the error message i received please kindly fixed the issue thanks the variation theme you selected previously is no longer available in this category you can still edit existing variations but you cannot add a new variation asin or sku (optional) asin_id
==============
please describe your issue including asins if possible asin_id is a parent listing with variation theme as sizename-colorname i cannot add more child listings and the following is the error message i received please kindly fixed the issue thanks the variation theme you selected previously is no longer available in this category you can still edit existing variations but you cannot add a new variation asin or sku (optional) asin_id