0
votes
2answers
23 views

python 2.7 breaking strings and calculate avg

Using this code I have to get the result of PSI : 101-121 (Unhealthy). I need the value of 101 and 121 from var_psi to calculate average. Is there anyone that knows how to extract the 101 and 121 that ...
4
votes
2answers
40 views

Python add leading zeroes using str.format [duplicate]

Can you display an integer value with leading zeroes using the str.format function? Example input: "{0:some_format_specifying_width_3}".format(1) "{0:some_format_specifying_width_3}".format(10) ...
0
votes
2answers
31 views

TypeError: unsupported operand type(s) for ** or pow(): 'str' and 'int'

I am just experimenting and having fun with Python 2.7 and I'm trying to write a quadratic equation solver. I had it working when the radicand is positive, but when it's negative im getting an error. ...
3
votes
1answer
36 views

Keep last word on each line of text file, delete rest

I wrote this python script that keeps the first word on each line in a text file and then deletes the rest. How can I do the opposite, kind of, meaning keep the last word on each line in the file and ...
1
vote
2answers
39 views

Title case for a paragraph

I'm creating a markov chain algorithm. I output a variable called sentences which contains one string of sentences. I want to make the sentences sentence case so I wrote this: for l in range(0, ...
1
vote
1answer
21 views

Persistent index in python string

I'm trying to get string.index() to ignore instances of a character that it has already located within a string. Here is my best attempt: alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" def ...
0
votes
1answer
48 views

ValueError: could not convert string to float:

I have a problem with the following code: inputf = open('test.dat', 'r') lines = inputf.readlines() rico_clus_e = [] for line in lines: line.split() print line if (line[0] != '#'): ...
2
votes
3answers
56 views

Is this an efficient way of finding the longest words (plural) in a string?

I'm new to Python and found a couple of suggestions for finding the longest WORD in a string, but none which accounted for a string with a number of words which match the longest length. After ...
1
vote
1answer
51 views

how to line up text in list box python

i have three lists populating a list box. what i would like to know is there a way to format the phrases so that the names are all in line then the dates and then the info. i have tried to use + to ...
1
vote
2answers
150 views

Python 2.7 is giving me inexplicable “syntax errors”

I wrote a script in python3.3 to sync two directories on windows which worked perfectly; later I wanted to make it an executable, and so I ported it to python 2.7 (cx_freeze gives me "module not ...
2
votes
2answers
54 views

Function returns tuple instead of string

I have a function in python similar to the following: def checkargs(*args): if len(args) == 1: x = args y = something elif len(args) == 2: x, y = args return x, y ...
0
votes
2answers
44 views

Are “”" syntactic sugar for raw strings?

From a tutorial: print """ Usage: thingy [OPTIONS] -h Display this usage message -H hostname Hostname to connect to """ produces the following output: ...
-4
votes
1answer
106 views

python string evaluation not giving proper output [closed]

I have a python function test to test my code . ' got and expected string are the same , But when I check it through the below method it gives X instead of OK Edit : including the parent function ...
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
60 views

Remove characters before and including _ in python 2.7

good day all, i use python 2.7 the following code returns into a nice readable output. def add_line_remove_special(ta_from,endstatus,*args,**kwargs): try: ta_to = ...
1
vote
2answers
69 views

python remove characters and add crlf to file

i have the following file Ichg_UNBUNOA3 14 2090100000015 14 1304221445000001 ...
0
votes
1answer
48 views

Break up long line of text into lines of fixed width in Python 2.7

How would I break up a long string, at the spaces where possible, inserting hyphens if not, with an indent for all lines apart from the first line? so, for a working function, breakup(): splitme = ...
-2
votes
1answer
86 views

Convert unicode cyrillic symbols to string in python [duplicate]

When I try to convert unicode: a = u"Тест" To string: str(a) I got this error: 'ascii' codec can't encode characters in position 0-3: ordinal not in range(128) I need str(a) to give me ...
0
votes
3answers
63 views

Using a calculation and a string in an input. (Python 2.7)

I'm having this annoying problem in Python 2.7, it won't let me do this numbers = raw_input(numbers + 1 + ': ') I want it to print out 'numbers + 1' as a number in the console but.. It comes up ...
0
votes
2answers
57 views

How to find a part of string in another string?

I need to read data from the file. f=open("essay.txt","r") my_string=f.read() The below string which starts with \nSubject: and ends with \n is in the my_string Example: "\nSubject: Good morning - ...
2
votes
4answers
190 views

in Python, how to convert list of float numbers to string with certain format?

I have a list of tuple of float numbers, something like [ (1.00000001, 349183.1430, 2148.12222222222222), ( , , ), ..., ( , ,) ] How can I convert all numbers to strings, with same format ...
3
votes
4answers
76 views

python-How to pick the most similar string out of a list?

I am hoping for a function like this: def findSimilar(string, list): .... return aString Where aString is similar to the passed string but is present in list. Background: I am making ...
-1
votes
1answer
60 views

How can I cluster a list of lists in Python based on string indices? Need insight

I have a list of lists in this fashion. [['Introduction', '0 11 0 1 0'], ['Floating', '0 11 33 1 0'], ['point', '0 11 33 1 1'], ['numbers', '0 11 33 1 2'], ['IEEE', '0 11 58 1 0'], ['Standard', '0 ...
1
vote
2answers
59 views

How to get only words from the string using python

I have a file which has special characters, so I used file operations to read. f=open('st.txt','r') string=f.read() The sample string is "Free Quote!\n \n Protecting your family ...
0
votes
0answers
16 views

“in” syntax incorrectly returning false when checking if a string is in a list

I wanted to learn Python, so I tried to use it for some typical, basic tasks, but I encountered a problem. For some reason, the "in" syntax returns a false false when searching for a string in list. ...
2
votes
4answers
79 views

Python: Lists within lists - function that adds string to item in parent list without affecting child list?

I have generated a list of lists using: board = [] for i in range(0,5): board.append(["#"] * 4) Which returns: [['#', '#', '#', '#'], ['#', '#', '#', '#'], ['#', '#', '#', '#'], ['#', '#', ...
0
votes
1answer
42 views

how to get the last part of a string before a certain character?

i am trying to print the last part of a string before a certain character. i'm not quite sure whether to use the string .split() method or string slicing or maybe something else. here is some ...
2
votes
2answers
810 views

TypeError: bad operand type for unary -: 'str'

I've got a problem with Python 2.7.3-32bits on Windows. I put this code to see if anyone can help me out with this error. The comments are in Spanish but it don't affect the code. import gtk import ...
0
votes
2answers
48 views

How to address a python list in MySQL query with “WHERE”?

I have the below code in which I want my MySQL query select those values in the 'name' column that are identical to the value in 'filenames' python list. I keep get an empty () as for the result. Can ...
1
vote
1answer
31 views

Replacing or substituting in a python string does not work

I could almost solve all of my python problems thanks to this great site, however, now I'm on a point where I need some more and specific help. I have a string fetched from a database which looks ...
-1
votes
1answer
46 views

How to count string frequency from an imported file in python? [closed]

I have a section of my program in which i want it to read a string of characters to be inputted by the program user, And count and print the number of time it occurs in this text from a file.... ...
0
votes
0answers
13 views

Concatanation in python error

I am writing a python server from the scratch. I want to combine Referer with the requested path. for example: GET /images/menu_blue_bg.gif HTTP/1.1<br/> Host: localhost:7000<br/> ...
1
vote
4answers
220 views

Converting a String into Dictionary python

I want to have a dictionary from >>> page_detail_string = urllib2.urlopen("http://graph.facebook.com/Ideas4India").read() It returns a string like >>> page_detail_string ...
0
votes
1answer
33 views

Calculating days using string dates in Python

I have dates in the current string format: 'Tue Feb 19 00:09:28 +1100 2013' I'm trying to figure out how many days have passed between the date in the string and the present date. I've been able to ...
1
vote
2answers
190 views

Conversion of unicode minus sign ( from matplotlib ticklabels )

I'm having a problem with the Text object that matplotlib use to represent the ticklabels. For testing reason I need to check the value of the ticks labels that are created in a plot. If the label is ...
0
votes
2answers
98 views

calculate combinations of letter-pair matches in two lists?

I´m new to programming and can´t find a Q & A here that seems to be answering this exact question (although there are plenty on Python and matching words and letters in lists). I have two lists ...
0
votes
1answer
75 views

Compare and store matching letters in two lists of words?

I'm totally new to programming and have read several Q & A here at Stackoverflow about matching strings in two lists, but don't find one that helps me with this exact task. I have to lists, like ...
1
vote
1answer
67 views

How to select a string of variable length but with fixed beginning and ending?

I have many strings like statt 29,95 € nur 26,95€8) statt 39,95 € nur 35,95€13) I want to select & remove part which is coming between statt 29,95 € nur. String will always start with ...
4
votes
4answers
82 views

python: splitting a long string at distinct places in one run

I am entirely new to programming and just yesterday started learning python for scientific purposes. Now, I would like to split a single very long string (174 chars) into several smaller as follows: ...
0
votes
2answers
66 views

How can I insert spaces at certain locations in a string (Python 2.7)?

I've found many related questions, and a couple that have at least helped me get this far. My goal is to have a function that receives a string and an arbitrary number of integers. I want the function ...
2
votes
1answer
84 views

Check if the string conforms to a certain format

I am trying to do some pattern matching in my unit test. My source code has the following MY_CODE = "The input %s is invalid" def my_func(): check_something() return MY_CODE % some_var In ...
1
vote
1answer
116 views

cleaning a string from escape character with python

I get Data from a webapp in JSON that includes various python escape characters including "\n" and "\r" I build a little function to clean the data from problematic chars and spaces before feeding it ...
1
vote
1answer
70 views

splitting string in Python (2.7)

I have a string such as the one below: 26 (passengers:22 crew:4) or 32 (passengers:? crew: ?) . What I'm looking to do is split up the code so that just the numbers representing the ...
3
votes
1answer
80 views

How are these strings represented internally in Python interpreter ? I don't understand

# -*- coding: utf-8 -*- a = 'éáűőúöüó€' print type(a) # <type 'str'> print a # éáűőúöüó€ print ord(a[-1]) # 172 Why is this working ? Shouldn't be this a SyntaxError: Non-ASCII ...
0
votes
1answer
55 views

“\b” acting improperly in string

I have a small bit of code that seems to be acting improperly; I'm new to Python, and imagine I'm overlooking something. The code is: bs = ("\b", "\b", "\b", "\b", "\b", "\b", "\b", "\b", "\b"); ...
0
votes
1answer
57 views

Cannot save utf-8 encoded stuff in string

I am querying the Twitter API and receive utf-8 encoded answers. Now I want to save these answers in a string with the format() function. This is what I have so far (and I have tried a lot of ...
-1
votes
2answers
141 views

How to use text table as dictionary data in Python [closed]

I'm trying to make some serial correspondence script in python. I have one file with template, and one with text table. How to use text table as substitution source? Example imput: Template File: ...
-2
votes
2answers
92 views

convert string to triple quoted string [closed]

How would you go about converting a string into a triple quoted string? x = "y" into: x = """y"""
0
votes
2answers
75 views

Python cleaning words in a sentence

I am trying to write a function that accepts a string (sentence) and then cleans it and returns all alphabets, numbers and a hypen. however the code seems to error. Kindly know what I am doing wrong ...
2
votes
1answer
114 views

Read python stdout as string

In Java, I can read the stdout as a string using ByteArrayOutputStream stdout = new ByteArrayOutputStream(); System.setOut(new PrintStream(stdout)); String toUse = stdout.toString(); /** * do all ...

1 2