") # print print("Hello,", name) # int(), float(), str(), bool() value = int("5") # abs, round, min, max, print(abs(-5)) # 5 print(pow(2, 3)) # 8 print(round(3.14159, 2)) # 3.14 # len, sorted nums = [3, 1, 4] print(len(nums)) # 3 print(sorted(nums)) # [1, 3, 4] # and lot of others!.. # https:!//docs.python.org/3/library/functions.html