Re: [Tutor] conditionals or comparison or expressions terminology

2014-02-05 Thread Peter Otten
Ian D wrote: Ian, please answer to the list, not me in private. Thank you. > Most of this makes sense except for the c(a<=b) > also > if c(a<=b) > > It is the c(...) syntax that I don't understand. > > I dont recall seeing a statement like this. c is just an arbitrary function, I put in the

Re: [Tutor] conditionals or comparison or expressions terminology

2014-02-04 Thread Peter Otten
Ian D wrote: > Are: > > <= > == > != > > simple conditionals statements, conditionals, comparison operators, > conditional expressions or what? [comparison] operators: http://docs.python.org/3.3/reference/lexical_analysis.html#operators a <= b # expression (something is evaluated; ideally t

[Tutor] conditionals or comparison or expressions terminology

2014-02-04 Thread Ian D
Hi Are: <= == != simple conditionals statements, conditionals, comparison operators, conditional expressions or what? I am looking at a few different pages and am unsure what I should be calling these expressions. http://anh.cs.luc.edu/python/hands-on/3.1/handsonHtml/ifstatements.html#s