Python 101

Using Python in Nuke to Manipulate Nodes Knob and Strings

In this written tutorial, we will be using Python code within Nuke to manipulate nodes and strings. We will go through the different commands used in the code and explain what they do. Example: 1 The first part of the code manipulates a string. The string represents a file path filePath = ‘F:/Fiverr/2023/Render/v2/HB_1030_v2_####.exr’ addOne = …

Using Python in Nuke to Manipulate Nodes Knob and Strings Read More »

1. Python 101 NoteBook-Arithmetic Operators

Python 101 NoteBook Arithmetic operators are used to perform mathematical operations on numerical values. Python supports the following arithmetic operators:1. Addition (+)2. Subtraction (-)3.Multiplication (*)4.Division (/)5.Floor division (//)6.Modulus (%)7.Exponentiation (**) Example # Addition (+): adds two values together a = 2 b = 3 c = a + b print(c) # Output: 5 # Subtraction …

1. Python 101 NoteBook-Arithmetic Operators Read More »