Tagged Questions
1
vote
1answer
15 views
How to format raw string with different expressions inside?
Let's say, we want to catch something with regex, using rawstring to define the pattern, which pattern has repeating elements, and variables inside. And we also want to use the format() string ...
0
votes
2answers
47 views
Modifying python's string Formatter
I have a function which takes no arguments and returns a string, which I want to be called using a string format. Here it is, and here's how I've tried to use format:
def cabbages():
return ...
1
vote
1answer
43 views
How to replace only particular dots in the string?
How to replace only particular dots in the text string?:
string_expample = '123|4.3|123.54|sdflk|hfghjkkf.ffg..t.s..9.7..tg..3..654..2.fd'
I need to get only dots that are 1 and between 2 digits( ...
4
votes
0answers
41 views
Get the string that is the midpoint between two other strings
Is there a library or code snippet available that can take two strings and return the exact or approximate mid-point string between the two strings?
Preferably the code would be in Python.
...
0
votes
2answers
22 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
41 views
Python Error ValueError: invalid literal for int() with base 10: 'stop'
Every time I try me code it works but when I type in 'stop' it gives me an error:
ValueError: invalid literal for int() with base 10: 'stop'
def guessingGame():
global randomNum
...
1
vote
5answers
44 views
Make random choice from string [closed]
Let's say I have a string like:
data = '''Random digits: (1|2|3), (4|5|6), (7|8|9).'''
How can I get output like:
Random digits: 1, 6, 7.
or
Random digits: 3, 4, 9.
So the idea is to choose ...
1
vote
3answers
47 views
Searching through mutliple values in a list Pyhton
Suppose I have a list:
items = ['matt', 'zen', 'a', 'b', 'c', 'cat', 'dog']
if elem in items
`if 'a' 'b' 'c' found then return 1
Whenever elem finds 'a', 'b', 'c' in the list and return a value. ...
0
votes
2answers
41 views
searching string, exclude certain substrings
I am searching a string 000295-0000108352@ap.ipaccess.com for 108352, this should return true. However if I search for a substring of this it should not return true. Eg if I searched for 08352, this ...
0
votes
4answers
53 views
Strings and appending in Python
In Python a string is immutable. I find the function string.join() could add the value to a string but it seems the following doesn't work.
#coding: utf-8
if __name__ == "__main__":
str = "A fox ...
1
vote
3answers
38 views
Saving x,y coordinates in python
I am generating hundreds of lines (x,y coordinates) output in a for loop. What would be the easy way to save them into a txt file at the end of the process?
Thanks
Example of output:
…
100 23
112 ...
3
votes
4answers
60 views
String in list to float
I have a list called 'ft_List that looks like...
[['Fall2001', '22.00', '2000', '01', '01', '120.0', '', 'N'],
[CgeCam2002', '20.00', '2000', '09', '04', '0.0', '1', ''],
['Fall2004', '18.50', ...
1
vote
1answer
35 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
118 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 ...
1
vote
2answers
26 views
Limit string width by breaking into multiple lines with Python
I am using python to generate a test file used for programming. In this file, I have several auto-generated comments. Problem is, some of these comments can be quite long, and the software which ...
0
votes
5answers
85 views
Joining elements of list: Python
Suppose I have list given as:
x = ['a', '\n', 'b', '\n', 'c', '\n', '\n', 'd']
How can I use the ''.join() function to ignore the newline characters and obtain abcd?
1
vote
1answer
39 views
Python regex search only finding the first pattern
I am using python's re module to search in a string for certain words.
For a simple example, I have a list called valid_words and a string called valid_string.
valid_string = "Use Use%"
valid_words ...
-1
votes
3answers
70 views
Strings in Python with [ […] ] [closed]
I have a string which is represented in this format:
[[u'This is a string']], what does this mean??
How can I turn this into:
[u'This is a string']
or
['This is a string']
1
vote
1answer
40 views
Slugify string in Django
I have developed a form, where the user adds his/her first name and last name.
For the username (a unique property), I've devised the following method:
FirstName: harrY LastName: PottEr --> ...
1
vote
4answers
76 views
Trying to understand an easier way with RegEx
To give you an idea, I'm trying to accomplish grabbing any string with this information.
IP Address for: John Doe on 05/20/13
I basically need to find all strings in that format..
I am using date ...
1
vote
1answer
31 views
Regex pattern to split the string based on numeric characters
I'd like to have a regex pattern that splits the string based on the numbers present in them
50cushions => [50,cushions]
30peoplerescued20children => [30,peoplerescued,20,children]
...
2
votes
1answer
32 views
Inserting another character in place of spaces in Python [duplicate]
Lets say I have a String: The Quick Brown Fox. I want to insert a character in place of the spaces. So that it becomes:
The-Quick-Brown-Fox
I could do that manually by iterating throughout the ...
1
vote
3answers
39 views
I there a python function to reset the script after it's run?
So when i run this in my IDE, the terminal pops up and I input whatever, it oututs the way it's intended, but then the terminal closes. Is there a function that can simply reset the function in the ...
12
votes
2answers
322 views
Why does Python have a format function as well as a format method
The format function in builtins seems to be like a subset of the .format method used specifically for the case of a formatting a single object.
eg.
>>> format(13, 'x')
'd'
is apparently ...
2
votes
2answers
52 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
...
2
votes
2answers
38 views
Longest 200 byte string - database validation max_length
So, working to a specification which dictates a byte length for a given variable (200 bytes) provided by end users/apps.
Using a python string, what is the maximum character length of a string, which ...
0
votes
1answer
25 views
Working with parameters passed via URL directly through query string via Python
Using a Python CGI script, I want to take parameters given directly via URL (the user will type in the URL directly this way) and store the data in the query string as variables.
How can I do this? ...
0
votes
3answers
46 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!,
...
2
votes
4answers
55 views
How to use Unicode characters in a python string
I'd like to be able to use unicode in my python string. For instance I have an icon:
icon = '▲'
print icon
which should create icon = '▲'
but instead it literally returns it in ...
0
votes
4answers
37 views
Python regex remove all before a certain point
Let's say I got a string:
F:\\Somefolder [2011 - 2012]\somefile
And I want to use regex to remove everything before: somefile
So the string I get is:
somefile
I tried to look at the regular ...
4
votes
2answers
82 views
Random sampling of non-overlapping substrings of length k
Given a string of length n, how would I (pseudo)randomly sample m substrings of size k such that none of the sampled substrings overlap? Most of my scripting experience is in Perl, but an easy-to-run ...
-3
votes
1answer
47 views
Converting Strings into Python Dictionaries [closed]
I'm newbie in Python having difficulties with dictionary. Can anyone please give a simple example to convert the string into dictionary. Thanks.
0
votes
3answers
61 views
Splitting string into different line lengths
I'm trying to split a variable length string across different but predefined line lengths. I've thrown together some code below which fails on key error 6 when I plonk it into Python Tutor (I don't ...
52
votes
6answers
2k views
When splitting an empty string in Python, why does split() return an empty list while split('\n') returns ['']?
I am using split('\n') to get lines in one string, and found that ''.split() returns an empty list, [], while ''.split('\n') returns ['']. Is there any specific reason for such a difference?
And is ...
1
vote
1answer
26 views
Python: Function simplifying the input instead of passing string
I need to enter a complex string for handling (UTC time code) and breaking down as part of an assignment. I have started the function like this as required:
def convertWmiDateTime(wmiDateTime):
But ...
0
votes
1answer
39 views
Finding strings that are each separated by the same string
I am using python regular expressions.
My inputs are strings like these:
[In 1]: Names = "John r Spencer Farrow r David K r Gillian"
[In 2]: Names = "Andrew r Eli Ltd"
i.e. There are any number of ...
0
votes
1answer
30 views
String to syntax Python
I use configparser to get values for my python script, but I need to call function stored in config.ini... Since all values in configparser are stored as strings, is it possible to transform string ...
1
vote
1answer
44 views
Validating user input strings in Python
So I've searched just about every permutation of the words "string", "python", "validate", "user input", and so on, but I've yet to come across a solution that's working for me.
My goal is to prompt ...
0
votes
1answer
46 views
Python keep whitespace in a string
How can i keep white space in a string?
I have a string
piece = "**\n *\n *"
**
*
*
and I want print this in the center, but it I use this function, doesn't keep the white space
print ...
0
votes
2answers
25 views
Python print string centered
I would to print centered a string that is more than 1 line
a = "*\n*\n**"
I tried with
print '{0:^20}'.format(a, 'centered')
but it put in the center just the first *, how can i put all the ...
0
votes
3answers
38 views
input string in python 3
I have string variable test, In Python 2.7 this works fine.
test = raw_input("enter the test") print test
But in Python 3.3. I use
test = input("enter the test") print test
and I get an error ...
-2
votes
1answer
25 views
i have stored the streaming twitter data in an o1.json file but i am unable to read all tweets
import json
with open('o1.json') as f:
for line in f:
data=(json.loads(line))
print data["text"]
o1.json contains the streaming twitter data, when i read this data in a python object, ...
2
votes
2answers
45 views
how to convert a string to the desired form?
Good day! I'm trying to implement a module for testing knowledge. The user is given the task, he wrote the decision that is being sent and executed on the server. The question in the following. There ...
0
votes
2answers
85 views
python - fastest way to find unique “words” in a string
I have a string, s, with a length of 2*2*1092-1 = 4367 characters. Here are the first 15 characters:
0 0 0 1 0 1 0 0
I am interested in the characters as couples; i.e. for the first 15 characters:
...
0
votes
1answer
40 views
Python Class For Reading List Element ,__str__ and class questions
I am writing a Python script which will ssh into a box(using parakimo) and run a command. I wanted to make a object for the stdout/stderr and print out the output.
Am I passing the list correctly ...
1
vote
5answers
77 views
Adding a simple value to a string
If I have a string lets say ohh
path2 = '"C:\\Users\\bgbesase\\Documents\\Brent\\Code\\Visual Studio'
And I want to add a " at the end of the string how do I do that? Right now I have it like ...
0
votes
4answers
28 views
Sending data from PHP to Python [closed]
I have string data where I need quotes also to be send (").
PHP file:
<?php
$name = '"name"';
$title = 'title';
$art = 'art';
//echo $name;
$output = ...
0
votes
7answers
85 views
Python add digits on either side of ' : ' ie. 22:11 + 22:22 = 44:33
22:11 + 22:22 = 44:33
varible_A = ('22:11')
varible_B = ('22:11')
the numbers on the left(22) are minutes
the numbers on the right(11) are seconds
I'm trying to add the two numbers to get
...
0
votes
2answers
79 views
Comparing strings not working
I have a list of article titles that I store in a text file and load into a list. I'm trying to compare the current title with all the titles that are in that list like so
def duplicate(entry):
...
-8
votes
2answers
58 views
Pyhon - String split lines [closed]
add_numbers( "A1", "Element 560234 65952 6598881 20203256 2165883 659562 654981 24120 261240 31648948 23900 5512400 5512900 5612400 5612900" )
add_numbers( "A2", "Element 261240 31659 5612400 ...




