On Wednesday, February 5, 2014 7:17:17 PM UTC-5, Asaf Las wrote:
> On Thursday, February 6, 2014 2:10:16 AM UTC+2, Zhen Zhang wrote:
>
> > Hi, every one.
>
> > Zhen
>
> str_t = '3520005,"Toronto (Ont.)",C
> ,F,2503281,2481494,F,F,0.9,1040597,979330,630.1763,3972.4,1'
>
> list_t = str_t.split
import csv
date1 = []
open = []
high = []
low = []
close = []
data = []
with open("C:/Documents and Settings/wilson/My
Documents/Downloads/execution.csv", "rb") as csvfile:
fastreader = csv.reader(csvfile, delimiter = ",", skipinitialspace=True)
count = 0
for row in fastre
On Wednesday, February 5, 2014 7:34:57 PM UTC-5, MRAB wrote:
> On 2014-02-06 00:10, Zhen Zhang wrote:
>
> > Hi, every one.
>
> >
>
> > I am a second year EE student.
>
> > I just started learning python for my project.
>
> >
>
> > I intend to parse a csv file with a format like
>
> >
>
> >
On 2/5/2014 10:02 PM, msus...@gmail.com wrote:
if a == 1:
x = y
else:
x = z
y = z + y
z = z + 1
While editing this file I accidentally pushed TAB on the line with 'y = z + y'.
In this particular case, remove the indentation with
x = y if a == 1 else z
and indenting the next line is
On Wednesday, February 5, 2014 7:46:04 PM UTC-5, Tim Chase wrote:
> On 2014-02-05 16:10, Zhen Zhang wrote:
>
> > import csv
>
> > file = open('raw.csv')
>
>
>
> Asaf recommended using string methods to split the file. Keep doing
>
> what you're doing (using the csv module), as it attends to
On Wednesday, February 5, 2014 7:57:26 PM UTC-5, Dave Angel wrote:
> Zhen Zhang Wrote in message:
>
> > Hi, every one.
>
> >
>
> > I am a second year EE student.
>
> > I just started learning python for my project.
>
> >
>
> > I intend to parse a csv file with a format like
>
> >
>
> >
On Thursday, February 6, 2014 9:52:43 AM UTC+2, Zhen Zhang wrote:
> On Wednesday, February 5, 2014 7:33:00 PM UTC-5, Roy Smith wrote:
> I failed to figure out why.
OK, you had to look to what i posted second time. The first one is
irrelevant. Note that file was emulated using StringIO. in your
c
wilsonmo...@gmail.com wrote:
> TypeError: 'list' object is not callable
Hint:
> open = []
[...]
> with open(..., "rb") as csvfile:
--
https://mail.python.org/mailman/listinfo/python-list
On Thursday, February 6, 2014 10:15:14 AM UTC+2, Asaf Las wrote:
> On Thursday, February 6, 2014 9:52:43 AM UTC+2, Zhen Zhang wrote:
> case it will be file name.
little correction not a file name - file object, file_t is result from open()
as you did in your example
--
https://mail.python.org/
Zhen Zhang writes:
...
> I am currently running python 2.7.
>
> Yes, i thought there must be a print function in python like fprint
> in C++ that allows you to print into a file directly.
>
> But i google about "print string into text file" I got answers using
> f.write() instead. :)
Indeed. The
On 02/06/2014 12:01 AM, wilsonmo...@gmail.com wrote:
import csv
date1 = []
open = []
high = []
low = []
close = []
data = []
with open("C:/Documents and Settings/wilson/My Documents/Downloads/execution.csv",
"rb") as csvfile:
fastreader = csv.reader(csvfile, delimiter = ",", skipinitial
Peter Otten於 2014年2月6日星期四UTC+8下午4時22分45秒寫道:
> wilsonmo...@gmail.com wrote:
>
>
>
> > TypeError: 'list' object is not callable
>
>
>
> Hint:
>
>
>
> > open = []
>
>
>
> [...]
>
>
>
> > with open(..., "rb") as csvfile:
i follow in
http://www.dyinglovegrape.com/data_analysis/part1/1da
On Thursday, February 6, 2014 11:11:13 AM UTC+2, wilso...@gmail.com wrote:
> i follow in
> http://www.dyinglovegrape.com/data_analysis/part1/1da3.php
> still have error
> what is the correct writing?
give another name to list 'open' at line 'open= []'
change it to dopen or whatever. you make name
wilsonmo...@gmail.com writes:
> Peter Otten wrote:
> > wilsonmo...@gmail.com wrote:
> >
> > > TypeError: 'list' object is not callable
> >
> > Hint:
> >
> > > open = []
> >
> > [...]
>
> > > with open(..., "rb") as csvfile:
>
> i follow in
> http://www.dyinglovegrape.com/data_analysis/part1/1d
Le mercredi 5 février 2014 12:44:47 UTC+1, Chris Angelico a écrit :
> On Wed, Feb 5, 2014 at 10:00 PM, Steven D'Aprano
>
> wrote:
>
> >> where stopWords.txt is a file of size 4KB
>
> >
>
> > My guess is that if you split a 4K file into words, then put the words
>
> > into a list, you'll proba
On 2/6/14 5:15 AM, wxjmfa...@gmail.com wrote:
sum([sys.getsizeof(c) for c in ['a', 'a EURO', 'aa EURO']*3])
336
sum([sys.getsizeof(c) for c in ['aa EURO aa EURO']*3])
150
sum([sys.getsizeof(c.encode('utf-32')) for c in ['a', 'a EURO', 'aa EURO']*3])
261
sum([sys.getsizeof(c.encode('utf-32
Zhen Zhang Wrote in message:
>
> I am currently running python 2.7.
>
> Yes, i thought there must be a print function in python like fprint in C++
> that allows you to print into a file directly.
> But i google about "print string into text file" I got answers using
> f.write() instead. :)
>
Dave Angel Wrote in message:
> Zhen Zhang Wrote in message:
>>
>
>> I am currently running python 2.7.
>>
>> Yes, i thought there must be a print function in python like fprint in C++
>> that allows you to print into a file directly.
>> But i google about "print string into text file" I got
On Tuesday, February 4, 2014 8:51:25 PM UTC+5:30, jmf wrote:
> Useless and really ugly.
Evidently one can do worse:
http://www.pip-installer.org/en/latest/installing.html#requirements
--
https://mail.python.org/mailman/listinfo/python-list
On 2014-02-06 07:52, Zhen Zhang wrote:> On Wednesday, February 5, 2014
7:33:00 PM UTC-5, Roy Smith wrote:
>> In article <5c268845-003f-4e24-b27a-c89e9fbfc...@googlegroups.com>,
>> Zhen Zhang wrote:
>>
>> > [code]
>> >
>> > import csv
>> > file = open('raw.csv')
>> > reader = csv.reader(file)
>>
On Thursday, February 6, 2014 6:46:37 PM UTC+5:30, MRAB wrote:
>
> It's actually the comma that makes it a tuple (except for the 0-tuple
> "()"); it's just that it's often necessary to wrap it in (...), and
> people then think it's those that are making it a tuple, but it's not!
Interesting viewp
Le jeudi 6 février 2014 13:23:03 UTC+1, Rustom Mody a écrit :
> On Tuesday, February 4, 2014 8:51:25 PM UTC+5:30, jmf wrote:
>
>
>
> > Useless and really ugly.
>
>
>
> Evidently one can do worse:
>
>
>
> http://www.pip-installer.org/en/latest/installing.html#requirements
or http://cx-free
is it able to utilize functions written in Python in Matlab?
--
https://mail.python.org/mailman/listinfo/python-list
Le jeudi 6 février 2014 12:10:08 UTC+1, Ned Batchelder a écrit :
> On 2/6/14 5:15 AM, wxjmfa...@gmail.com wrote:
>
>
>
>
>
> sum([sys.getsizeof(c) for c in ['a', 'a EURO', 'aa EURO']*3])
>
> > 336
>
> sum([sys.getsizeof(c) for c in ['aa EURO aa EURO']*3])
>
> > 150
>
> s
Sam wrote:
> is it able to utilize functions written in Python in Matlab?
Yes, if you embed the Python interpreter in a MEX-file.
--
https://mail.python.org/mailman/listinfo/python-list
On 2014-02-06, Zhen Zhang wrote:
> Hi, every one.
>
> I am a second year EE student.
> I just started learning python for my project.
>
> I intend to parse a csv file with a format like
>
> 3520005,"Toronto (Ont.)",C >
> ,F,2503281,2481494,F,F,0.9,1040597,979330,630.1763,3972.4,1
[...]
into a t
Some mysterious problem with the "euro".
Let's take a real "French" char.
>>> sys.getsizeof('abc' + 'œ')
46
>>> sys.getsizeof(('abc' + 'œ').encode('utf-32'))
37
or a "German" char, ẞ
>>> sys.getsizeof('abc' + '\N{LATIN CAPITAL LETTER SHARP S}')
46
>>> sys.getsizeof(('abc' + '\N{LATIN CAPITAL
On Thursday, February 6, 2014 8:55:09 AM UTC-5, Sturla Molden wrote:
> Sam wrote:
>
> > is it able to utilize functions written in Python in Matlab?
>
>
>
> Yes, if you embed the Python interpreter in a MEX-file.
Thanks Sturla, could you please explain in more details, I am new to Python :)
-
On 2014-02-06, msus...@gmail.com wrote:
> I had a bug in a Python script recently. The code in question was something
> along the lines of:
>
> if a == 1:
> x = y
> else:
> x = z
> y = z + y
> z = z + 1
>
> While editing this file I accidentally pushed TAB on the line
> with 'y = z + y'.
On Thu, Feb 6, 2014 at 11:23 PM, Rustom Mody wrote:
> On Tuesday, February 4, 2014 8:51:25 PM UTC+5:30, jmf wrote:
>
>> Useless and really ugly.
>
> Evidently one can do worse:
>
> http://www.pip-installer.org/en/latest/installing.html#requirements
Aside from using a little "chain link" icon rath
On 06/02/2014 14:02, Neil Cerutti wrote:
You must open the file in binary mode, as that is what the csv
module expects in Python 2.7. newline handling can be enscrewed
if you forget.
file = open('raw.csv', 'b')
I've never opened a file in binary mode to read with the csv module
using any Py
On 2014-02-06 17:40, Mark Lawrence wrote:
> On 06/02/2014 14:02, Neil Cerutti wrote:
> >
> > You must open the file in binary mode, as that is what the csv
> > module expects in Python 2.7. newline handling can be enscrewed
> > if you forget.
> >
> > file = open('raw.csv', 'b')
> >
>
> I've never
Greetings,
Assuming I have a debian workstation for which I don't have any sudo rights, i
n order to be able to install / remove python packages, should I be using
virtualenv ? Is it a suited solution ?
JM
-- IMPORTANT NOTICE:
The contents of this email and any attachments are con
On 06/02/2014 17:40, Mark Lawrence wrote:
On 06/02/2014 14:02, Neil Cerutti wrote:
You must open the file in binary mode, as that is what the csv
module expects in Python 2.7. newline handling can be enscrewed
if you forget.
file = open('raw.csv', 'b')
I've never opened a file in binary mod
I have a module that has one operation that benefits greatly from being
multiprocessed.
Its a console based module and as such I have a stream handler and filter
associated to
the console, obviously the mp based instances need special handling, so I have
been
experimenting with a socket server i
On 2014-02-06, Tim Chase wrote:
> On 2014-02-06 17:40, Mark Lawrence wrote:
>> On 06/02/2014 14:02, Neil Cerutti wrote:
>> >
>> > You must open the file in binary mode, as that is what the csv
>> > module expects in Python 2.7. newline handling can be enscrewed
>> > if you forget.
>> >
>> > file =
[first, it looks like you're posting via Google Groups which
annoyingly double-spaces everything in your reply. It's possible to
work around this, but you might want to subscribe via email or an
actual newsgroup client. You can read more at
https://wiki.python.org/moin/GoogleGroupsPython ]
On 201
On 2014-02-06 18:34, Neil Cerutti wrote:
> They do actually mention it.
>
> From: http://docs.python.org/2/library/csv.html
>
> If csvfile is a file object, it must be opened with
> the ‘b’ flag on platforms where that makes a difference.
>
> So it's stipulated only for file objects on syst
Thanks for all the suggestions!
Best,
-Matyas
--
https://mail.python.org/mailman/listinfo/python-list
On 2014-02-06 17:23, Chris Angelico wrote:
On Thu, Feb 6, 2014 at 11:23 PM, Rustom Mody wrote:
On Tuesday, February 4, 2014 8:51:25 PM UTC+5:30, jmf wrote:
Useless and really ugly.
Evidently one can do worse:
http://www.pip-installer.org/en/latest/installing.html#requirements
Aside from
On Thursday, February 6, 2014 1:24:17 PM UTC-5, Joseph L. Casale wrote:
> I have a module that has one operation that benefits greatly from being
> multiprocessed.
> Its a console based module and as such I have a stream handler and filter
> associated to
> the console, obviously the mp based ins
msus...@gmail.com schreef:
I had a bug in a Python script recently. The code in question was something
along the lines of:
if a == 1:
x = y
else:
x = z
y = z + y
z = z + 1
While editing this file I accidentally pushed TAB on the line with 'y = z + y'.
My changes were elsewhere and I d
On Thu, Feb 6, 2014 at 3:29 PM, Roel Schroeven wrote:
> msus...@gmail.com schreef:
>>
>> I had a bug in a Python script recently. The code in question was
>> something along the lines of:
>>
>> if a == 1:
>> x = y
>> else:
>> x = z
>> y = z + y
>> z = z + 1
>>
>> While editing this file I
A new version of the Python module which wraps GnuPG has been
released.
What Changed?
=
This is an enhancement and bug-fix release, but the bug-fixes
include some security improvements, so all users are encouraged
to upgrade. See the project website ( http://code.google.com/p/python-gn
> Maybe check out logstash (http://logstash.net/).
That looks pretty slick, I am constrained to using something provided by the
packaged modules
in this scenario.
I think I have it pretty close except for the fact that the
LogRecordStreamHandler from the cookbook
excepts when the sending proces
On Thursday, February 6, 2014 10:53:59 PM UTC+2, Vinay Sajip wrote:
> A new version of the Python module which wraps GnuPG has been
> released.
> Cheers
>
> Vinay Sajip
>
> Red Dove Consultants Ltd.
Hi
Good job!
One question - is this package runs executable when particular function
must be
On 02/06/2014 12:36 PM, Larry Martell wrote:
On Thu, Feb 6, 2014 at 3:29 PM, Roel Schroeven wrote:
msus...@gmail.com schreef:
While editing this file I accidentally pushed TAB on the line with 'y = z
+ y'.
My suggestion: configure your editor to insert the appropriate amount of
spaces instea
On Thu, Feb 6, 2014 at 4:32 PM, Ethan Furman wrote:
> On 02/06/2014 12:36 PM, Larry Martell wrote:
>>
>> On Thu, Feb 6, 2014 at 3:29 PM, Roel Schroeven wrote:
>>>
>>> msus...@gmail.com schreef:
While editing this file I accidentally pushed TAB on the line with 'y =
z
+ y'.
On Fri, Feb 7, 2014 at 9:09 AM, Larry Martell wrote:
> The Tab key is not evil, it's the tab character (Ctrl-I). I have been
> bitten by this many time when I had to work on a program written by
> another. They had their tab stops set at 5 or 6, mine is set at 4, or
> they did not have expandtab s
On Friday, February 7, 2014 12:30:17 AM UTC+2, Chris Angelico wrote:
> On Fri, Feb 7, 2014 at 9:09 AM, Larry Martell wrote:
>
> > The Tab key is not evil, it's the tab character (Ctrl-I). I have been
> > bitten by this many time when I had to work on a program written by
> > another. They had the
Vinay Sajip writes:
> A new version of the Python module which wraps GnuPG has been
> released.
>
There seem to be 2 gnupg modules for Python. The other one has version number
1.2.5. Very confusing!
--
Piet van Oostrum
WWW: http://pietvanoostrum.com/
PGP key: [8DAE142BE17999C4]
--
https://mai
Hi,
I'm curious. If I append an item to a list from the left using `list.insert`,
will Python always move the entire list one item to the right (which can be
super-slow) or will it check first to see whether it can just allocate more
memory to the left of the list and put the item there, saving
On Fri, Feb 7, 2014 at 10:01 AM, Asaf Las wrote:
> pep8 pushed \t to dark side in Python.
Only for the Python stdlib, and only because a decision has to be made
one way or the other. I believe Guido stated at one point that there
was only a very weak push toward "spaces only" rather than "tabs
on
On 2/6/2014 6:59 PM, cool-RR wrote:
Hi,
I'm curious. If I append an item to a list from the left using
`list.insert`, will Python always move the entire list one item to
the right (which can be super-slow) or will it check first to see
whether it can just allocate more memory to the left of the
On 2014-02-06 23:59, cool-RR wrote:
Hi,
I'm curious. If I append an item to a list from the left using
`list.insert`, will Python always move the entire list one item to
the right (which can be super-slow) or will it check first to see
whether it can just allocate more memory to the left of the
In article ,
Scott W Dunning wrote:
> I am having trouble figuring out how to remove spaces.
>
> Assume variables exist for minutes and seconds. Each variable is an integer.
> How would you create a string in the format,
>
> 3:11
>
> with no spaces. where 3 is minutes and 11 is seconds.
>
On Friday, February 7, 2014 5:00:56 AM UTC+2, Roy Smith wrote:
> In article ,
>
> Dave Angel wrote:
> > list does not promise better than O(1) behavior
> I'm not aware of any list implementations, in any language, that
> promises better than O(1) behavior for any operations. Perhaps there is
>
On Friday, February 7, 2014 8:44:43 AM UTC+5:30, Chris Angelico wrote:
> On Fri, Feb 7, 2014 at 2:00 PM, Roy Smith wrote:
> > Dave Angel wrote:
> >> list does not promise better than O(1) behavior
> > I'm not aware of any list implementations, in any language, that
> > promises better than O(1) b
On Friday, February 7, 2014 8:30:56 AM UTC+5:30, Roy Smith wrote:
> Dave Angel wrote:
>
> > list does not promise better than O(1) behavior
>
> I'm not aware of any list implementations, in any language, that
> promises better than O(1) behavior for any operations. Perhaps there is
> O(j), wh
On Fri, Feb 7, 2014 at 2:00 PM, Roy Smith wrote:
> In article ,
> Dave Angel wrote:
>
>> list does not promise better than O(1) behavior
>
> I'm not aware of any list implementations, in any language, that
> promises better than O(1) behavior for any operations. Perhaps there is
> O(j), where y
On Fri, Feb 7, 2014 at 2:29 PM, Rustom Mody wrote:
> On Friday, February 7, 2014 8:44:43 AM UTC+5:30, Chris Angelico wrote:
>> On Fri, Feb 7, 2014 at 2:00 PM, Roy Smith wrote:
>> > Dave Angel wrote:
>> >> list does not promise better than O(1) behavior
>> > I'm not aware of any list implementati
I am having trouble figuring out how to remove spaces….
Assume variables exist for minutes and seconds. Each variable is an integer.
How would you create a string in the format,
3:11
with no spaces. where 3 is minutes and 11 is seconds.
Obviously when I…
print minutes, “:”, seconds
I get 3
On Thursday, February 6, 2014 12:29:36 PM UTC-8, Roel Schroeven wrote:
>
> My suggestion: configure your editor to insert the appropriate amount of
>
> spaces instead of a tab when you press the tab key.
You misunderstood the problem, but managed to start a Tab war! :-)
My emacs inserts 4 spac
Is this what you’re talking about?
minutes = “3”
seconds = “11”
print int(minutes), ”:" int(seconds)
That’s what you mean by turning a string into an int right? Not sure how to
add strings together though.
On Feb 6, 2014, at 6:37 PM, Chris Angelico wrote:
> On Fri, Feb 7, 2014 at 12:22
what exactly is the “%d:%02d”% saying?
On Feb 6, 2014, at 6:25 PM, Roy Smith wrote:
> In article ,
> Scott W Dunning wrote:
>
>> I am having trouble figuring out how to remove spacesŠ.
>>
>> Assume variables exist for minutes and seconds. Each variable is an integer.
>> How would you cre
Roy Smith wrote:
O(-1). In Soviet Russia, operation performs you!
It's rumoured that the PSU is developing a time
machine module that can achieve O(-n), but
--
https://mail.python.org/mailman/listinfo/python-list
On Feb 6, 2014, at 11:12 PM, Scott W Dunning wrote:
> what exactly is the “%d:%02d”% saying?
Python uses string format specifiers similar to C's printf()
%d means, "convert an integer to a decimal string"
%2d means the same, plus, "make the result 2 columns wide"
and, finally, %02d means, "a
On Fri, Feb 7, 2014 at 2:11 PM, Tim Chase wrote:
> On 2014-02-06 22:00, Roy Smith wrote:
>> > list does not promise better than O(1) behavior
>>
>> I'm not aware of any list implementations, in any language, that
>> promises better than O(1) behavior for any operations. Perhaps
>> there is O(j),
On Wednesday, February 5, 2014 9:52:33 AM UTC-8, nevets...@gmail.com wrote:
> The underscore relative to a prfixed abbb. Is to be noted
Reviving a fourteen year-old thread?
That has to be some kind of record.
--
https://mail.python.org/mailman/listinfo/python-list
On Friday, February 7, 2014 12:59:19 AM UTC+5:30, Robert Kern wrote:
> When I looked at it earlier today, I got a default "cannot find this glyph"
> box
> instead of the chain icon. I assumed that is what Rustom was referring to.
> It's working for me now.
Yes I was getting unicode number-box
In article ,
Tim Chase wrote:
> On 2014-02-06 22:00, Roy Smith wrote:
> > > list does not promise better than O(1) behavior
> >
> > I'm not aware of any list implementations, in any language, that
> > promises better than O(1) behavior for any operations. Perhaps
> > there is O(j), where yo
In article ,
Dave Angel wrote:
> list does not promise better than O(1) behavior
I'm not aware of any list implementations, in any language, that
promises better than O(1) behavior for any operations. Perhaps there is
O(j), where you just imagine the operation was performed?
--
https://mail
On Fri, Feb 7, 2014 at 3:09 PM, Scott W Dunning wrote:
> Is this what you’re talking about?
>
> minutes = “3”
> seconds = “11”
>
> print int(minutes), ”:" int(seconds)
>
> That’s what you mean by turning a string into an int right? Not sure how to
> add strings together though.
>
Well, that's w
On Fri, Feb 7, 2014 at 12:20 PM, wrote:
> It would be possible to disable the Tab key completely and type in the spaces
> all the time. (It is much less likely that one would press the space bar
> accidentally four times or hold it down to get 4 spaces by mistake.)
>
> Unfortunately this means
On Fri, Feb 7, 2014 at 12:22 PM, Scott W Dunning wrote:
> Assume variables exist for minutes and seconds. Each variable is an integer.
> How would you create a string in the format,
>
> 3:11
>
> with no spaces. where 3 is minutes and 11 is seconds.
>
>
> Obviously when I…
>
> print minutes, “:”, s
On Thu, Feb 6, 2014 at 3:59 PM, cool-RR wrote:
> Hi,
>
> I'm curious. If I append an item to a list from the left using `list.insert`,
> will Python always move the entire list one item to the right (which can be
> super-slow) or will it check first to see whether it can just allocate more
> me
Oops, thought you said turning a str into an int. Yeah, I’m actually using
Idle on a mac. I keep trying differnt things but, I’m just very new to this.
Is this what you’re talking about?
minutes=3
seconds=11
print str(minutes) + ‘:’ + str(seconds)
Unfortunately I keep getting an error. Al
On 2/6/2014 7:42 PM, MRAB wrote:
On 2014-02-06 23:59, cool-RR wrote:
Hi,
I'm curious. If I append an item to a list from the left using
`list.insert`, will Python always move the entire list one item to
the right (which can be super-slow) or will it check first to see
whether it can just alloca
On 2014-02-06 22:00, Roy Smith wrote:
> > list does not promise better than O(1) behavior
>
> I'm not aware of any list implementations, in any language, that
> promises better than O(1) behavior for any operations. Perhaps
> there is O(j), where you just imagine the operation was performed?
cool-RR Wrote in message:
> Hi,
>
> I'm curious. If I append an item to a list from the left using `list.insert`,
> will Python always move the entire list one item to the right (which can be
> super-slow) or will it check first to see whether it can just allocate more
> memory to the left of
On Fri, Feb 7, 2014 at 4:01 PM, Scott W Dunning wrote:
> Oops, thought you said turning a str into an int. Yeah, I’m actually using
> Idle on a mac. I keep trying differnt things but, I’m just very new to this.
>
> Is this what you’re talking about?
>
> minutes=3
> seconds=11
>
> print str(minu
On Friday, February 7, 2014 6:52:24 AM UTC+2, Dan Stromberg wrote:
> On Thu, Feb 6, 2014 at 3:59 PM, cool-RR wrote:
>
> I'm pretty sure it'll slide all the existing elements right one
> position, and add at the leftmost position just opened up - assuming
> you're inserting at position 0.
>
> As
Scott W Dunning writes:
> I keep trying differnt things but, I’m just very new to this.
A few things that will make your communications more fruitful:
* Please don't top-post. Trim the quoted material to the parts relevant
for your response, and respond inline like a normal discussion.
htt
Sam Adams wrote:
> Thanks Sturla, could you please explain in more details, I am new to Python :)
All the information you need to extend or embed Python is in the docs.
Apart from that, why do you need Matlab? A distro like Enthought Canopy or
Anaconda has all the tools you will ever need for
>
> A few things that will make your communications more fruitful:
>
> * Please don't top-post. Trim the quoted material to the parts relevant
> for your response, and respond inline like a normal discussion.
Oh, ok sorry about that. Like this?
>
> * Ensure that your message composer does
Scott W Dunning writes:
> > * Please don't top-post. Trim the quoted material to the parts
> > relevant for your response, and respond inline like a normal
> > discussion.
>
> Oh, ok sorry about that. Like this?
Yes. You also need to preserve the attribution lines (the lines inserted
for each
On Friday, February 7, 2014 10:58:26 AM UTC+5:30, Sturla Molden wrote:
> Sam Adams wrote:
> > Thanks Sturla, could you please explain in more details, I am new to Python
> > :)
> All the information you need to extend or embed Python is in the docs.
> Apart from that, why do you need Matlab?
87 matches
Mail list logo