National 5 – SDD Predefined Functions
So today we were looking over predefined function. For the N5 course we have to be aware of RANDOM, ROUND, & LENGTH. The RANDOM function picks an integer between two values. import random number=random.randint(1,20) # random(StartValue,EndValue) print(number) The ROUND function rounds a real number (floating point) to a fixed number of decimal points. a=1.2 # 1 …
