Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
320 views

Why is int(50)<str(5) in python 2.x?

In python 3, int(50)<'2' causes a TypeError, and well it should. In python 2.x, however, int(50)<'2' returns True (this is also the case for other number formats, but int exists in both py2 and ...
5
votes
3answers
180 views

Python: telling a raw string (r'') from a string ('')

I'm currently building a tool that will have to match filenames against a pattern. For convenience, I intend to provide both lazy matching (in a glob-like fashion) and regexp matching. For example, ...
5
votes
3answers
2k views

How do I write raw binary data in Python?

I've got a Python program that stores and writes data to a file. The data is raw binary data, stored internally as str. I'm writing it out through a utf-8 codec. However, I get UnicodeDecodeError: ...
4
votes
2answers
81 views

C - Loading a Struct Containing a Pointer to a Pointer

This produces an incompatibility warning: #include <stdlib.h> #include <stdio.h> typedef struct { int key; int data; struct htData_* next; struct htData_* prev; }htData_; ...
4
votes
3answers
1k views

inheritance from str or int

Why I have problem creating a class the inherite from str (or also int) class C(str): def __init__(self, a, b): str.__init__(self,a) self.b = b C("a", "B") TypeError: str() takes at ...
3
votes
3answers
61 views

Trying to pull useful info blocks from text file

I'm trying to pull all of the occurrences of a certain table out of a text file using string slices, but it keeps pulling out the first slice over and over. Perhaps I need a dummy variable for the ...
3
votes
2answers
464 views

Python: override __str__ in an exception instance

I'm trying to override the printed output from an Exception subclass in Python after the exception has been raised and I'm having no luck getting my override to actually be called. def ...
2
votes
1answer
58 views

how do you obtain the address of an instance after overriding the __str__ method in python

class Bar: pass class Foo: def __str__(self): return "Foo instance" >> aBar = Bar() >> print aBar <__main__.Bar instance at 0x100572a28> >> aFoo = Foo() >> ...
2
votes
6answers
1k views

Python mistaking float for string

I receive TypeError: Can't convert 'float' object to str implicitly while using Gambler.pot += round(self.bet + self.money * 0.1) where pot, bet, and money are all doubles (or at least are ...
2
votes
3answers
537 views

Python float - str - float weirdness

>>> float(str(0.65000000000000002)) 0.65000000000000002 >>> float(str(0.47000000000000003)) 0.46999999999999997 ??? What is going on here and how do I convert ...
1
vote
2answers
84 views

Why str can't get a second parameter,when __str__ can?

Hi, I decided to use str for printing the contents of a tree in tree-like structure,using something like print tree The nodes of the tree are all objects of user-created classes and I overload ...
1
vote
2answers
98 views

ruby global variable dollar sign semicolon ($;) regex equivilant

I have a string "\nbed.bed_id,\nbed.bed_label,\nbed.room_id,\nbed.pool_bed, nbed.record_state\n"and I need to split it by white space and comma. I tried split(/,?\s+/) which works but also leaves a ...
1
vote
3answers
63 views

php str_replace where word starting with

let's say i have $variable = 'something&list=anotherthing'; how can i remove all starting with &list= Where "anotherthing" it is not the same, everytime.
1
vote
2answers
160 views

str object is not callable for unittest

I have written a test case which shows the error from unittest import * class MyTest(unittest.TestCase): def test_add(self): self.assertEquals(1,(2-1),"Sample Subraction Test") if ...
1
vote
3answers
106 views

Error in strtok function in C

I am using a simple program to tokenize a string using strtok function. Here is the code - # include <stdio.h> char str[] = "now # time for all # good men to # aid of their country"; //line a ...
1
vote
2answers
54 views

Python sorting a file by frequency

I have a file that contains a list of words like: word1 34 word2 12 word3 6 word4 498 word5 50 I want to sort the file by the numerical value. My code: sortedfreqlist = sorted(freqlist, ...
1
vote
2answers
159 views

Django shell: Model-to-string with unicode fails / fails not

can someone give me a hint why the umlaut in the model instance's name is turned to garbage once but printed correctly when the unicode() is 'print()'ed? class Geo(Position): name = ...
1
vote
1answer
157 views

Editing txt file from batch by tokens with similar variables in the string

I am trying to edit a simple txt ini file from a batch file without using a utility. Thanks to code previously posted by paxdiablo I can do this with a form of the code below. However myfile.ini ...
1
vote
3answers
241 views

Python int/str checking

I have a homework assignment and I've done the bare minimum of the assignment, but while working on it, I became interested in how to make my program better. The point of the code is to draw a user ...
1
vote
3answers
136 views

How to apply __str__ function when printing a list of objects in python

Well this interactive python console snippet will tell everything: >>> class Test: ... def __str__(self): ... return 'asd' ... >>> t = Test() >>> print t asd >>> l = [Test(), Test(), ...
1
vote
3answers
558 views

Str in Python's map and sum

Why do you need to use the function 'str' in the following code? I am trying to count the sum of digits in a number. My code for i in number: sum(map(int, str(i)) where number is the ...
1
vote
4answers
314 views

How to catch str exception?

import sys try: raise "xxx" except str,e: print "1",e except: print "2",sys.exc_type,sys.exc_value In the above code a string exception is raised which though deprecated but still a 3rd ...
0
votes
2answers
78 views

How To make scope of variable Global(Without making it actually Global)

How can I make scope of a String variable(In Java) global.So that it is accessed from another function Eg //String b="null"; I don't want to do this... because if i do this, fun2 will print Null ...
0
votes
2answers
148 views

Convert an ASCII string to long long

I've got some lines of information from a data-file in C++. One information is a 12 character long number. How can I convert this from string to long long (I think long long is most suitable for this) ...
0
votes
0answers
72 views

Replacing 3 parts in url with 2

Im trying to replace 2 parts of my urls but for some reason on one of the urls when I put it in a array using parse_url a extra word shows up I dont know where its coming from any how im trying to do ...
0
votes
2answers
45 views

replacing numbers and words

how can i change string from this pattern 'name season 1 episode 2', to = 'name S01E02' - but if there is episode more than 10 like that 'name season 1 episode 15' only the season will change, i have ...
0
votes
1answer
62 views

Why am I getting an invalid literal error?

I need to split a two digit value from a pyqt spinbox in half for math operations. In order to do this I'm converting the value to a string. This works fine for the first digit and it goes back to an ...
0
votes
5answers
263 views

How to Compare Last n Characters of A String to Another String in C

Imagine that I have two strings, one of them is a url like "/sdcard/test.avi" and the other one is"/sdcard/test.mkv". I want to write an if statement that looks whether the last four characters of ...
0
votes
2answers
56 views

Converting a character to another character in PHP

I have two arrays one with fake Japanese characters, another with the English alphabet I have no idea where to go from here, I've tried loops, str_replace, even using the letters array as the keys for ...
0
votes
3answers
280 views

stristr Case-insensitive search PHP

Please excuse my noob-iness! I have a $string, and would like to see if it contains any one or more of a group of words, words link c*t, fu*, sl** ETC. So I was thinking I could do: ...
0
votes
1answer
148 views

How to convert a file to string directly using C# ASP.NET

I asked a question regarding how to display aspx and cs code on page, One answer was to convert to string and display in textbox. Is there a function in C# ASP.NET which allows to convert file ...
0
votes
2answers
125 views

why in python giving to str func a unicode string will throw an exception?

for example the following: str(u'לשום') will throw an error. how can i prevent these?
0
votes
2answers
531 views

T-SQL STR() C#.NET LINQ to SQL Equivalent

I'm trying to convert a standard SQL query to a LINQ to SQL query. I was wondering what the LINQ equivalent of the T-SQL function STR() is? STR (T-SQL) Returns character data converted from ...
0
votes
2answers
511 views

Python unicode character in __str__

I'm trying to print cards using their suit unicode character and their values. I tried doing to following: def __str__(self): return u'\u2660'.encode('utf-8') like suggested in another thread, ...
0
votes
4answers
1k views

Why leading zero not possible in Python's Map and Str

What is the reason that you cannot use zero at the beginning of a number when converting the number to a sequence? Code example map(int,str(08978789787)) which gives Syntax error. I would like to ...
-1
votes
1answer
56 views

PHP Replace and Remove?

I have random Product Links URL. I want the result Like > http://yourdomain.com/index.php?main_page=product_info&products_id=5 Product Id = 5 or ...
-1
votes
2answers
521 views

AttributeError: 'str' object has no attribute 'attack' “'Help!”

I have q quick question regarding an Attribute Error regarding a basic Arena battler I am writing for my Intro to Programming Class. Here is the chunk of code that I am having trouble with upon ...
-2
votes
1answer
62 views

Str replace dont seem to match certain strings

I have a script which takes in some user input, cleans it and tries to replace the value in a string. I found that the str replace that I use cant seem to match e.g. 11 +tum. Why is that? Can I fix it ...