LifeMichael

LifeMichael

Haim Michael Blog

LifeMichael RSS Feed
 
 
 
 

Archive for Python

The Israeli Guide to Python INFO

I have recently started to work on writing a short practical guide that teaches Python. The guide includes texts and video clips. The texts were written in Hebrew. The video clips were taken in Hebre as well. You can find it at www.PythonBook.co.il.

Working with Directories in Python PRO

I have just completed to update the directories topic in my Python Fundamentals course. You can find its community version available for free personal usage at www.abelski.org. The slides are available for free download. The professional version is available at www.abelski.com. You can find below the new video clips I have just completed to create in order to [...]

Working with Files in Python PRO

I have just completed to update the files topic in my Python Fundamentals course. You can find its community version available for free personal usage at www.abelski.org. The slides are available for free download. The professional version is available at www.abelski.com. You can find below the new video clips I have just completed to create in order to [...]

Hello World in IronPython PRO

We can download  a .NET version for Python at IronPyhon.net. Once we download and install it on our PC we can use Visual Studio to develop in Python. The code we write will be compiled into CLR code. The code we write can use the .NET framework.

Modules in Python PRO

I have just completed to update the modules topic in my Python Fundamentals course. You can find its community version available for free personal usage at www.abelski.org. The slides are available for free download. The professional version is available at www.abelski.com.You can find below the new video clips I have just completed to create in [...]

Functions in Python PRO

I have just completed to update the functions topic in my Python Fundamentals course. You can find its community version available for free personal usage at www.abelski.org. The slides are available for free download. The professional version is available at www.abelski.com. You can find below the new video clips I have just completed to create [...]

Lambda Expressions in Python PRO

Using the lambda keyword we can define an anonymous function. Unlike using def, when using lambda we can have one single expression. We cannot have a block of statements. ob = lambda a,b,c:a+b+c print(ob(1,2,3)) The following video clip provides more explanation about lambda expressions in Python.

The nonlocal Keyword in Python PRO

Python 3.0 introduces the nonlocal new reserved word. Using this new reserved word we can assign directly to a variable with the same name in the outer scope (instead of creating a new variable). def a(): temp = 2 def b(): nonlocal temp temp = 4 print(“temp inside b “,temp) b() print(“temp inside a “,temp) [...]

Conditional Functions in Python PRO

Python allows us to condition the definition of a function. Since the function is defined during the execution of the code itself we can use a conditional statement in order to define the function that fits most. recursive = True if recurcive: def factorial(n): print(“within recursive factorial”) if n==0: return 1 else: return factorial(n-1)*n else: [...]

Python Fundamentals INFO

I am glad to announce about the Python Fundamentals course I have recently completed to develop. You can find its community version available for free personal and academic usage at www.abelski.com. Its commercial version is available at www.xperato.com. Please don’t hesitate and let me know your thoughts. I will be more than happy to get your [...]

Facebook Page

Life Youtube

Categories

Communities


Certifications




Tags

Speaker Wiki

My Facebook

Technorati

Add to Technorati Favorites

Recommend

Archives

Countries I Visited


visited 17 states (7.55%)
Create Your Own Map!

ClustrMaps

Recent Searches

FeedJIT

Google Page Rank

Alexa Stats

Courses I Teach


 

My Free Lectures


 

 

 

My Free eBooks


 

 

 

 

 

 

 

 

 

 

 

 

 

 

Courses 1996

Courses 1997

Courses 1998

Courses 1999

Courses 2000

Courses 2001

Courses 2002

Courses 2003

Courses 2004

Courses 2005

Courses 2006

Courses 2007

Courses 2008

Courses 2009

Courses 2010

Courses 2011

Courses 2012

Courses 2013