View all by Aronne_Monk
Aronne_Monk
Follow Aronne_Monk
Follow
Following Aronne_Monk
Following
Add To Collection
Collection
Comments
Devlog
Programming for Computer Animation and VFX TB1
←
Return to Programming for Computer Animation and VFX TB1
Devlog
Python: Type() and Factorials
December 11, 2022
by
Aronne_Monk
-Type()- In Python the Type() function gives us the type of a specific object with in the code that we have typed, for example: Input: a = ('Autobot', 'Decepticon', 'Human') b = "Hello there!" c = 66...
Continue reading
Python: Functions, Arguments and Return
December 11, 2022
by
Aronne_Monk
-Functions- In python, a Function is a block of code which will only run when it is called and you can also pass data know as parameters into a Function, and you can return data as well in the form of...
Continue reading
Python: Integers, Floating Point Numbers, Complex Numbers, Collections/lists and Loops
December 11, 2022
by
Aronne_Monk
-Integers- Within Python Integers are zero, positive or negative whole numbers without a fractional part to any of them while also having unlimited precision and length for example: Input: x = 5 y = 7...
Continue reading
Python: Printing, Commenting, variables and Moodle Tasks
December 11, 2022
by
Aronne_Monk
- Printing - In python the "print" function prints a specific piece message to a screen or another standard output device. The message could be used as a string or another object, where the object wou...
Continue reading