User Tools

Site Tools


Sidebar

Dan's Wiki

DokuWiki Instructions (local) DokuWiki Manual
Site Checker (Orphans Wanted)

Edit Sidebar

programming:python:start

This is an old revision of the document!


Python Cheat Sheet

Comments

# - Pound sign

# This is a comment
ob = bpy.data.objects["Panel"]

Data types

Functions

def myfunction(aNumber=1, aString=“hello):

Syntax

Indents matter.

Loops

for i in range(2,10):
    print (i)

or use xrange(2,20) for lazy, as-needed streaming of content.

programming/python/start.1544058362.txt.gz · Last modified: 2018/12/06 01:06 by dwheele