How to get python to call a function multiple times. Add the values returned by the function

def a ():
z = random number + random number
while I < 999:

z() 
i+=1

how can I add the values of Z

Mar.06,2021

def a():
    z = 0
    while 1:
        z =  + 
        yield z
      
while i<999:

    res = a() 
    print(res)
    i+=1

sum(z() for _ in range(999))
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3c333-2c2d8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3c333-2c2d8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?