Creative Coding cheat sheet.docx

Python lets you declare variables and change their data type (e.g. start off with hello = “hello” string, and later use it as a number. Java is statically typed - you have to explicitly declare all variables with a data type before you try and assign or use them. // initialise the placeholder for some variables. String hello; int frogs; // set their values. hello = “hello, world ... ................
................