Re: Installing PyCharm on Windows (was: issues)

2015-12-19 Thread Josef Pktd
On Saturday, December 19, 2015 at 1:32:27 PM UTC-5, Thomas 'PointedEars' Lahn wrote: > Anna Szaharcsuk wrote: > > > I was trying to install PyCharm, but didn't worked and needed interpreter. > > the computer advised to install the python for windows. > > Not “the python for windows” (that would

Re: (Execution) Termination bit, Alternation bit.

2015-12-19 Thread Chris Angelico
On Sun, Dec 20, 2015 at 1:27 PM, Dennis Lee Bieber wrote: > On Sat, 19 Dec 2015 18:56:17 +0100, "Skybuck Flying" > declaimed the following: > >>Hello, >> >>I'd like to see instruction execution enhanced with the following two ideas: >> >>1. A termination bit, and a terminator pointer. >>2. A alte

Re: Need help on a project To :"Create a class called BankAccount with the following parameters "

2015-12-19 Thread Mark Lawrence
On 20/12/2015 01:09, Michael Torrie wrote: On 12/19/2015 05:41 PM, Mark Lawrence wrote: On 19/12/2015 23:19, malitic...@gmail.com wrote: you are absolutely correct Mark i'm a beginner in python and from the original question and test case given above i wrote this class BankAccount(object):

Re: Need help on a project To :"Create a class called BankAccount with the following parameters "

2015-12-19 Thread Michael Torrie
On 12/19/2015 05:41 PM, Mark Lawrence wrote: > On 19/12/2015 23:19, malitic...@gmail.com wrote: >> you are absolutely correct Mark >> i'm a beginner in python and from the original question and test case given >> above i wrote this >> >> class BankAccount(object): >> def __init__(self, initi

Re: Need help on a project To :"Create a class called BankAccount with the following parameters "

2015-12-19 Thread Mark Lawrence
On 19/12/2015 23:19, malitic...@gmail.com wrote: you are absolutely correct Mark i'm a beginner in python and from the original question and test case given above i wrote this class BankAccount(object): def __init__(self, initial_balance=0): self.balance = initial_balance de

Re: Need help on a project To :"Create a class called BankAccount with the following parameters "

2015-12-19 Thread malitician
you are absolutely correct Mark i'm a beginner in python and from the original question and test case given above i wrote this class BankAccount(object): def __init__(self, initial_balance=0): self.balance = initial_balance def deposit(self, amount): self.balance +=am

Installing PyCharm on Windows (was: issues)

2015-12-19 Thread Thomas 'PointedEars' Lahn
Anna Szaharcsuk wrote: > I was trying to install PyCharm, but didn't worked and needed interpreter. > the computer advised to install the python for windows. Not “the python for windows” (that would be some species of snake), but _Python_ for _Windows_, the programming language interpreter. Jus

(Execution) Termination bit, Alternation bit.

2015-12-19 Thread Skybuck Flying
Hello, I'd like to see instruction execution enhanced with the following two ideas: 1. A termination bit, and a terminator pointer. 2. A alternation bit, and a alternate pointer. The purpose of these bits is as follows: Before a processor/core executes an instruction both bits are examined. 1

Re: Need help on a project To :"Create a class called BankAccount with the following parameters "

2015-12-19 Thread Mark Lawrence
On 19/12/2015 03:15, malitic...@gmail.com wrote: good explanation Steven but can you please do more by posting the exact code as it relate to the question please? Please show us the code that you've written and we'll help, we do not write code for you. -- My fellow Pythonistas, ask not wh