Ask Your Question

teepan123's profile - activity

2018-06-21 18:14:28 +0200 received badge  Famous Question (source)
2016-07-22 17:26:53 +0200 received badge  Notable Question (source)
2013-05-05 08:21:42 +0200 received badge  Popular Question (source)
2011-10-19 17:06:10 +0200 asked a question how to write .digit() ??

I create function that want to see result of example 128.digit() = [1,1,0,0,0,0,..] like this (not sure)

but when I write in python, it has function .digit() too but it has different use and it can't use with integer number (it use to check digit, right?)

how can i write fucntion .digit() just like in sage into my python program?

thank you for your kindness

2011-10-16 13:24:26 +0200 asked a question Can I copy sage library to my program folder and..

I build program.py that must use some math function ie. IntegerModRing,.. and i don't want to use "from sage.all import *" cause it will run sage first to import library

Can I copy sage library to my program folder and just use "from path/to/myprogram.py import *" or it have another way

ps. Reason i don't want to run sage is i want to create program.py to pure program that use/import sage-lib not program that must install/run sage first before use.

thank you very much