Recent Changes - Search:

Test

edit SideBar

AtomicData

Numbers

Two types, integers and floating point numbers. Will talk about implementation/others later but for now just these two types.

type(5) #int
type(5.5) #float

Strings

'hello'
"hello"
type("hello")
"hello" + " " + "world"

Booleans

True
False
True and True
True or False

built-in functions can convert between types

str(500)
int("500")
Edit - History - Print - Recent Changes - Search
Page last modified on August 24, 2010, at 04:07 PM