top of page

GENERAL CODING TIPS

  • Writer: Sammy Lyu
    Sammy Lyu
  • Dec 12, 2025
  • 1 min read

Coding is a big part of film and VFX work, and so this section focuses on general coding tips for the average Python user.


As of writing, my Python version is 3.14





Creating NEW LINES with the \n function


When typing out a string like the classic "Hello World", you can add a \n behind it to create a new line as such: print("Hello World\nHello Word")

This creates two lines as follows: Hello World

Hello World






 
 
bottom of page