Gotchas
By understanding the following few gotchas, you can save yourself some hair pulling and hours of frustration. There are a few things that you must be aware of, as your read documentation, tutorials and code examples.
Spaces are significant: Beware of the existence or absence of an extra space before and after such characters as =, ;, [, ], {, }. The space is significant. Not respecting its use will break code snippets you may be learning from.
# Wrong variable declaration
myvar = "Hello"
# Right:
myvar="Hello"