This one is a bit more complex, but I'll keep this one short: Python
As far as my understanding, Python is a more advanced type of coding, something a bit more "fancy" than html, some examples are:
print("insert text here")
num1 = 1
num2 = 1
sum = num1 + num2
print('the sum of {0} and {1} is {2}', format (num1, num2, sum))
import random
print(random.randint(0,9))
this one was little difficult to understand so I hope these examples help.