Tagged Questions
0
votes
5answers
80 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?
0
votes
1answer
33 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
68 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
31 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
60 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
31 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
38 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 ...
10
votes
2answers
258 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
50 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
36 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
23 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
42 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
77 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
60 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 ...
45
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
25 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
38 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
38 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
45 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
36 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
23 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
44 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
81 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
38 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
76 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
26 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
83 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
55 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 ...
1
vote
3answers
49 views
replacing word with another word from the string in python
I have a string: "y, i agree with u."
And I have array dictionary [(word_will_replace, [word_will_be_replaced])]:
[('yes', ['y', 'ya', 'ye']), ('you', ['u', 'yu'])]
i want to replace 'y' with ...
1
vote
5answers
49 views
Join lines that seperated by empty lines in Python
I want to reformat below text using python:
text = """17/05/2013 10:09:15,INFO,xxxxxxxxxx
yyyyyy
zzzzzz
17/05/2013 10:09:15,INFO,xxxxxxxx
yyyyyyy
zzzzzzz"""
format them into
17/05/2013 ...
1
vote
0answers
20 views
Is it necessary to check the return value of spawn.send in pexpect?
Is it necessary to check the return value of send in pexpect?
The implementation of spawn.send(s) is using something like:
c = os.write(self.child_fd, s)
return c
Where the number of bytes are ...
2
votes
3answers
36 views
Convert exotic charset to string with python
After parsing some webpage with utf-8 coding, I realize that I obtain characters that I can't manipulaten, though it is readable by the means of print.
>> print data
A Deuce
>> data
...
-4
votes
1answer
97 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 ...
0
votes
2answers
31 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 ...
1
vote
3answers
131 views
Parse a string in C and save it to an array of structs
I am quite familiar with Python coding but now I have to do stringparsing in C.
My input:
input = "command1 args1 args2 arg3;command2 args1 args2 args3;cmd3 arg1 arg2 arg3"
My Python solution:
...
0
votes
4answers
38 views
Input file, modify column, output file
I have data in a text file and I would like to be able to modify the file by columns and output the file again. I normally write in C (basic ability) but choose python for it's obvious string ...
0
votes
3answers
42 views
Extracting multiple string values of variable length before and after a delimiter in a list
I have several Python lists in the following format:
rating = ['What is your rating for?: Bob', 'What is your rating for?: Alice', 'What is your rating for?: Mary Jane']
opinion = ['What is your ...
2
votes
3answers
44 views
Removing a Ton of Leading Spaces and Newline Characters from a String
I have a Python string that is printing out the following string in the shell:
'\\n autonomy\\n . . sweeping\\n \\n '
How can I remove all of ...
1
vote
5answers
55 views
Python: print a variable in hex
I'm trying to find a way to print a string in hex. For example I have this string which I then convert to its hex value.
my_string = "deadbeef"
my_hex = my_string.decode('hex')
How can I print ...
0
votes
2answers
37 views
How do I search a field for a substring?
Number1 Number2 Info1
1) 19124451932~18374913342~0- 9124441932
2) 18436889349~17064219321~0- 2024281123
3) 13352808654~19703842247~0- 9703842247
I'm looking for an if-clause which ...
3
votes
2answers
68 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, ...
0
votes
2answers
38 views
Replace characters in a string with whitespaces
I am writing a simple Python script that retrieves the latest tweet of any twitter user (in this case BBC) and uses the integrated text-to-speech system on Mac to read out the content of that ...
0
votes
5answers
44 views
Strings with embedded variables in Python
Maybe some already asked this but I didn't find it and I wanted to know how to embed variables into a string in Python. I usually do it like this:
print('Hi, my name is %s and my age is %d' %(name, ...




