Tag Archives: Sample Code

Blocks – Example

Below, we find sample code which uses block to return the values of the Fibonacci number Series.
def fibMax(max)
a1, a2 =1,1 # variables that are assigned parallel values
while a1

Posted in Development, Programming Basics | Also tagged | Comments closed

Container Creation

To initialize a container we will do the same steps showing code to support the things that have to be done. We create a table where we can add elements to the contents delete objects from either the beginning or the last entries and display an entry using the index or content on the index. [...]

Posted in Development, Programming Basics | Also tagged | Comments closed