Forum: Python Aug 8th, 2009 |
| Replies: 2 Views: 244 Yea that fixed my problem. Thanks! |
Forum: Python Aug 7th, 2009 |
| Replies: 2 Views: 244 Hello everyone, ok so I am working on this code that takes a string and splits it using the re module. The string contains words in between "<" and ">" (sometimes multiple words). Now what the... |
Forum: Python Jul 21st, 2009 |
| Replies: 2 Views: 221 Yes your solution is a lot simpler, thanks |
Forum: Python Jul 21st, 2009 |
| Replies: 2 Views: 221 Hi everyone I am writing this program that takes a string and search it for words. Those words are taken and they get "<" at the beginning and ">" at the end of the word. then it prints the string... |
Forum: Python Jul 15th, 2009 |
| Replies: 2 Views: 154 Thanks that was what I was looking for |
Forum: Python Jul 14th, 2009 |
| Replies: 2 Views: 154 Hi everyone I have a question but I don't know if it can be done in python.
Ok so this is what I want to do:
I have two scripts
string = "hello world"
and |
Forum: Python Jul 8th, 2009 |
| Replies: 4 Views: 243 thanks I try that and it worked on my program |
Forum: Python Jul 8th, 2009 |
| Replies: 4 Views: 243 Well is there a way to get what I append to a file in a new line.
So that the output would be:
'Hello World'
'hello world'
# instead of
'Hello World!hello world!' |
Forum: Python Jul 8th, 2009 |
| Replies: 4 Views: 243 Ok so for the last couple of days I have been struggling with file handling. Here is my problem I create a new file and write some text into it. Then I open it again to add more text to it but... |
Forum: Python Jul 5th, 2009 |
| Replies: 4 Views: 270 |
Forum: Python Jul 5th, 2009 |
| Replies: 4 Views: 270 Well that was very simple i feel so dumb |
Forum: Python Jul 5th, 2009 |
| Replies: 4 Views: 270 Ok so I was working on file handling, nothing special just making new (.txt) files and putting some text in it. That works fine the problem is that when I try to read the file from within python... |
Forum: Python Jun 30th, 2009 |
| Replies: 6 Views: 279 |
Forum: Python Jun 30th, 2009 |
| Replies: 6 Views: 279 Hi everyone it's been almost a year since I gave up programing in python so I have forgotten a lot of things, so just bare with me. Ok so I was playing around with python and ended up with this... |
Forum: Python Dec 20th, 2008 |
| Replies: 3 Views: 487 I tried that a couple of times and I still get the same message |
Forum: Python Dec 20th, 2008 |
| Replies: 3 Views: 487 Hi everyone I dont know if this question has already been answer but I really need help so bare with me. So here is my problem I just downloaded python 2.6 for windows however whenever i try to open... |
Forum: Python Aug 13th, 2008 |
| Replies: 4 Views: 1,733 Lists are what they seem - a list of values. Each one of them is numbered, starting from zero - the first one is numbered zero, the second 1, the third 2, etc. You can remove values from the list,... |