0
votes
2answers
28 views

Python 3 How to get string between two points using regex?

How to get the string between two points using regex or any other library in Python 3? For eg: Blah blah ABC the string to be retrieved XYZ Blah Blah ABC and XYZ are variables which denote the start ...
1
vote
4answers
24 views

String checking Python

I have a string representing a filename, how can I check it against few conditions at once? I've tried if r'.jpg' or r'.png' not in singlefile: but kept getting false positives all the time.
0
votes
2answers
24 views

Python 3 - Getting some strings from a HTTPrequest response

I'm having a hard time extracting data from a httprequest response. Can somebody help me? Here's a part of my code: import requests r = requests.get('https://www.example.com', verify=True) keyword ...
1
vote
2answers
37 views

Python 3 Special characters escaping

import urllib from urllib.request import urlopen address='http://www.iitb.ac.in/acadpublic/RunningCourses.jsp?deptcd=EE&year=2012&semester=1' source= urlopen(address).read() ...
1
vote
2answers
28 views

How to un-escape special characters in Python 3? [duplicate]

x='\r\n\t\t\t\t' print(x) The above code isn't working cos maybe of it is not recognising the special characters. So you could please help?
1
vote
4answers
73 views

Python-Unable to convert a list to string

What I was trying to do: Take a string and append a backwards copy of that string, making a palindrome What I came up with: # take an input string a = input('Please enter a string: ') a = ...
1
vote
1answer
39 views

Python 3 - Reading line by line from a textfile and doing action for each line

I need something like this done: Login to a website. Make an action to a specific URL. After the action, go to another URL (still in the site). So far here's what I've done. if ...
0
votes
1answer
41 views

trying to call a string that is assigned within a function

I have set a string called 'charge' within a function but when I call 'charge' in the main body I get a traceback call saying that 'charge' is not defined. I would like to know if it is possible to ...
-6
votes
1answer
80 views

Finding and counting the frequency of known pairs of words in multiple files [closed]

Basically I need to count the number of word pairs in multiple files. I have a list of word pairs in a file called result.txt, which looks like: the of the by they is group their I want to check ...
3
votes
2answers
79 views

Python 3 Finding the last number in a string

How can I find the last number in any big string? For eg in the following string I want 47 as the output: 'tr bgcolor="aa77bb"td>font face="verdana"color="white" ...
1
vote
1answer
60 views

Does Python have a rope data structure?

In writing some Python code, I came upon a need for a string-like data structure that offers fast insertion into, access to, and deletion from arbitrary positions. The first data structure that came ...
3
votes
1answer
93 views

Python 3 Regex Last Match

How do I grab the 123 part of the following string using Python 3 regex module? ....XX (a lot of HTML characters)123 Here the ... Part denotes a long string consisting of HTML characters, words and ...
0
votes
1answer
71 views

File Reading problems in Python

While Reading the files in python using f = open ("filename.txt") and accessing the data with f.read(1) and finally finding the position of stream usibg f.tell() for every step; We get a continous ...
0
votes
1answer
62 views

Is there any way to extract and print a raw/literal string from a list in Python

I am trying to write a code in Python 3.0 to reformat a data file line by line. The code reads each line, converts the line into a list, then reads each element of the list. Each list element is then ...
1
vote
1answer
43 views

finding an exact match for string in python 3

I used the following function to find the exact match for words in a string. def exact_Match(str1, word): result = re.findall('\\b'+word+'\\b', str1, flags=re.IGNORECASE) if ...
0
votes
2answers
43 views

Suppress/ print without b' prefix for bytes in Python 3

Just posting this so I can search for it later, as it always seems to stump me: $ python3.2 Python 3.2 (r32:88445, Oct 20 2012, 14:09:50) [GCC 4.5.2] on linux2 Type "help", "copyright", "credits" or ...
0
votes
3answers
50 views

Tkinter: String variables not working [closed]

I have made a program for science which asks you a symbol of n element and you must type in the element but the problem is that it can't tell if you got the answer wrong it just keeps saying CORRECT!, ...
0
votes
2answers
37 views

Custom string formatting for a list of objects

I have a list of objects. I am trying to output a meaningful representation of the objects in the list, that reveals some of the instance variables, using the string formatting capability built into ...
0
votes
1answer
24 views

counting the number of each word in a dictionary

I am trying to fix this code: def word_counter (input_str): input_str1 = input_str.lower() word = 0 input_str2 = dict(enumerate(input_str1.split(), start=1)) if word in input_str2: ...
1
vote
2answers
31 views

Converting a string into a dictionary

I want to convert a string such as: "this is a sentence" and turn it into a dictionary such as: {1:"this", 2:"is", 3:"a", 4:"sentence"} any help would be appreciated
3
votes
2answers
74 views

How to convert string to dictionary, and count the number of each word

I am just wondering how i would convert a string, such as "hello there hi there", and turn it into a dictionary, then using this dictionary, i want to count the number of each word in the dictionary, ...
1
vote
2answers
45 views

python 2.7 to python 3.2 string formatting error

I have this piece of python code: args =(12, 45, 7854) 2 result = 123 3 answer = 456 4 print 'Test with data: ', args, ' result: ', result, ' answer: ', answer Now when I run this with ...
0
votes
1answer
84 views

Python3 Print First File Line

How can I make Python3 print the first line of a file once I have loaded the file contents? In other words, what is Python3's equivalent to AWK's awk "NR==1"?
2
votes
1answer
98 views

Regular expression to split a huge string into multiple sets of key-value pairs

I've a huge string which contains many sets, each is separated by ,. Each set has key-value pairs in it, each pair is separated by &. Here is small example, ...
0
votes
1answer
75 views

Python 3: how to compare multiple strings in one line of code?

I'm trying to make a category select (by text interface) in Python 3, and I was wondering how I can compare if multiple strings are not true, and then print something along the lines of "that is not a ...
2
votes
2answers
106 views

Converting Unicode codepoints into Unicode character using Python 3.3.1

I've this string : sig=45C482D2486105B02211ED4A0E3163A9F7095E81.4DDB3B3A13C77FE508DCFB7C6CC68957096A406C\u0026type=video%2F3gpp%3B+codecs%3D%22mp4v.20.3%2C+mp4a.40.2%22\u0026quality=small\u ...
-3
votes
3answers
75 views

How to split binary string with python

I have a binary string s = b'504b03' How to split by bytes, such as: ['50','4b','03'] Thanks for advance. Python 3.3.1 UPD I'll try list(s) but get strange result [53, 48, 52, 98, 48, 51]
1
vote
2answers
77 views

can't concatenate strings in Python-3

when running this script in Python-3: #!/usr/bin/python # -*- coding: utf-8 -*- import socket import random import os import threading import sys class bot(threading.Thread): def __init__( self, ...
-2
votes
3answers
32 views

Adding Each word in a String to a List?

Given the string string1='apple purple orange brown' How would I go about turning it into a list list1=['apple','purple','orange','brown'] I thought I could do string1='apple purple orange ...
0
votes
2answers
43 views

File Manipulation: How to take out Punctuation and Capital letters?

I'm trying to figure out how to open a file, make all the letters in the file lowercase, and then take out all the punctuation. I've tried a few things I've seen online and in my book but I can't seem ...
0
votes
2answers
63 views

How do you define __str__ in python when including newline characters?

I'm trying to define str() for a maze object and have it print out something that looks like this: ####### #J..P.# #.###.# #..@#.# #@#.@.# ####### When I build the string to return, however, it ...
1
vote
2answers
66 views

How Can I Count Repeat Characters in a Str

everyone I was just wondering how to count repeat in ch in a str, the function I wrote is: def repeat(s): ''' ''' count = 0 L = [] for i in range(len(s)): count = 0 ...
0
votes
1answer
57 views

Python3: string to variable

I've looked everywhere for this but haven't found a suitable answer yet and I don't want to use a dictionary. How can I convert a string to a variable name? For example I have this call: ...
0
votes
2answers
39 views

No removal of null values (Python)

For processing the content of multiple CSV files, I have to filter several characters, most notably NULL values, from string-list-elements. For this I've tried several solutions from the web. One of ...
-4
votes
3answers
76 views

how to check str int list and tuple? [closed]

there is a file include str int list and tuple. I want to put them in different list. this is my example code: for word in file: if type(word) == int: ...... if type(word) == list: ...
1
vote
3answers
96 views

Download file as string in python

I want to download a file to python as a string. I have tried the following, but it doesn't seem to work. What am I doing wrong, or what else might I do? from urllib import request webFile = ...
1
vote
0answers
40 views

Convert Python Exception to std::string

How can I convert and save the Python exception that occurred into a std::string or wstring ? This is my current code: String ScriptErrorHandler::the_error() { if(PyErr_Occurred()) ...
0
votes
2answers
102 views

How to simply populate a dict in Python3.2 from a text file which has only string contents?

How to simply populate a dict in Python 3.2 from a text file which has only string contents? I am new to Python and I am trying to build a dictionary from a text file that contains only two columns ...
5
votes
5answers
532 views

What is the fastest way to check if a string contains repeating characters in Python 3?

I need to filter strings by the criterion that they contain no character twice. The strings are many (say 1.4 trillion). The strings are short (around 8 characters). The strings are unique (caching ...
0
votes
1answer
32 views

Reformatting a user-input

I want to create a program which will reformat a string inputted by a user into a more acceptable string. The string should be in this format: a list of authors (year) title, other information ...
-1
votes
3answers
88 views

python - Conditional list formatting

On Python 3 I am trying to write a function format_list(items) that takes a list items containing 1 or 2 string elements and returns a string containing the elements. Assume that the list being ...
1
vote
2answers
73 views

Changing lists with a given string

On Python 3 I am trying to write a function find(string_list, search) that takes a list of strings string_list and a single string search as parameters and returns a list of all those strings in ...
0
votes
5answers
347 views

Convert strings to int or float in python 3?

integer = input("Number: ") rslt = int(integer)+2 print('2 + ' + integer + ' = ' + rslt) double = input("Point Number: ") print('2.5 + ' +double+' = ' +(float(double)+2.5)) Gives me Traceback ...
0
votes
1answer
29 views

Return the number line a list of words is in?

I need help with a problem in which I create a function called index() which takes a file as a string and a list of words. The program will find the number lines that each word is in and return the ...
0
votes
4answers
98 views

Counting the input in a while loop?

I need help with a function I have to write which includes a while loop that will continue going until the user enters an empty input and once that happens, the function will return the number of ...
2
votes
1answer
185 views

ASCII string as dtype for numpy array of strings in Python 3

NumPy's string dtype seems to correspond to Python's str and thus to change between Python 2.x and 3.x: In Python 2.7: In [1]: import numpy as np In [2]: np.dtype((np.str_, 1)).itemsize Out[2]: 1 ...
0
votes
2answers
162 views

While loop in Python converting integer to a string?

So I can't seem to get this. Without the 'while' loop this code works fine but as soon as I apply the loop it stops working right. From some reason it's treating x as a string. Like if x were 2 it ...
0
votes
2answers
69 views

searching for a string in a file using python faliure

I am using this code to search for emails in a particular file and write them into a another file. I have used 'in' operator to make sure that the email are not duplicated. But this code does not get ...
0
votes
1answer
63 views

Generating Python strings dynamically based on some templates

I would like to generate specific xml strings from my module, based on the type of msg requested by some code using my module. Each of these xml strings contains some data that gets generated ...
0
votes
2answers
37 views

String non callable in python 3

I've met a strange problem while doing the 16th exercice of Learn Python the Hard Way (2nd edition, LPTHW). I have first typed the code, the copied it, and when I execute the script on my console ...

1 2 3