This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ss="\n".join(str(x) for x in allsheet) | |
f.write(str(ss)) | |
f.close() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.os.Handler | |
val SPLASH_TIME = 5000 | |
val handler = Handler(Looper.getMainLooper()) | |
handler.postDelayed({ | |
startActivity(Intent(applicationContext, SignIn::class.java)) | |
finish() | |
}, SPLASH_TIME.toLong()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import multiprocessing | |
if __name__ == '__main__': | |
p = multiprocessing.Pool() | |
dd=list(range(1, 500)) | |
for n in range(0, len(dd)): | |
p.apply_async(multip(n) ) | |
p.close() |