manuelaneenaOccasional ContributorJoined 6 years ago9 Posts1 LikeLikes received1 SolutionView All Badges
ContributionsMost RecentMost LikesSolutionsRe: appending values horizontally to a list TanyaYatskovska It was just a for loop.My requirement was to take out 4 values each from a list of 600+ values horizontally.I think I messed up the question I asked here.Please find the code below. for m in range(0, (len(valueList)-1), 4): regexpattern=(".*")+re.escape(valueList[m])+(".*")+(valueList[m+1])+(".*")+re.escape(valueList[m+2])+(".*")+re.escape(valueList[m+3])+(".*") Re: appending values horizontally to a list My problem is resolved.Thanks for the reply. Re: appending values horizontally to a list Dear Robert, I have created a set of values from a json file in a list which have around 700+ values.I wanted to rearrrange it to columns of 4.Could you please guide me for the same. Thank you. appending values horizontally to a list is there is a way to horizontally add items to a list.Normally it is added vertically. SolvedJson file parsing Hi, Is there is a way to parse a json file in python SolvedRe: comparison of excel & PDf Hi, I got how to fetch data from excel and PDf.But I wanted to compare the data in excel and data in PDf.Is there is a possible way to do so comparison of excel & PDf Dear Sir/Madam, I wanted to compare the data in an excel sheet and and a PDF.Could you please help me with this Regular Expressions in TestComplete Hi, I wanted to search for a partcular text in a PDF document using python.how can I use regular expressions for the same?I will be passing the PDF document as well as the regular expression as parameter. SolvedTesting with pdf files (AI driven testing) Could you please share me with the code for AI PDF testing using python?.I am aware that this code can be found in the below document, https://support.smartbear.com/articles/testcomplete/testing-pdf-files-with-testcomplete/ Unfortunately this one is in in Javascript only.I need python Solved