If yous see any other missing blocks, let me know! The only things I've found 
after a few days "actually missing" but easily addable as said are:

read/writes files ---- i can use the code below, and to open your block code 
paste/save the XML code btw.
split by each char ---- only 3 times slower if use blocks i.e. 40 seconds for 
100MB and can use the code above if want too.
string<>integer<>float conversion ---- use code below
bits to bytes ---- I can do manually or by other means.
-------------------------------------------------------------------------
with open('input.txt','r',encoding='utf-8') as f:
    text = f.read()
//just change your variable in other places to open to ex. text if you have 
text = f.read() as in the above

def split(text):
    return list(text)
print(split(text))

a = None
b = None
a = 0.0036474577
b = str(a)[2 : 6]
print(b)
------------------------------------------
Artificial General Intelligence List: AGI
Permalink: 
https://agi.topicbox.com/groups/agi/T409fc28ec41e6e3a-Mfe5fefc2cd96c067584f5b88
Delivery options: https://agi.topicbox.com/groups/agi/subscription

Reply via email to