コマンドプロンプトなどからの起動

Linux   python  pyton3
Windows   py   pyw



tkinter

NAS のプロンプトでは動作しない.
「Window」環境が必要.

import tkinter as tk
w1 = tk.Tk()
w2 = tk.Tk()
input()          # pause
w1.destroy()
input()          # pause
# w2.destory()
# input()        # pause

 

一時的に止める

import time
time.sleep(1)   # 1 秒


~.py の import

\\AS5202T\Home\test\test_py\_lib\py\r_cs.py

import	math

def	r_cs	(c , s)	:	return	(        ( c*c )  / ( 8 *s ) +  s/2 )
def	s_rc	(r , c)	:	return	( r-math.sqrt(r*r - (c/2)*(c/2) )   )
def	c_rs	(r , s)	:	return	(   math.sqrt(r*r - (r-s)*(r-s) )*2 )


WIndows 環境では次の様な内容の bat ファイルを用意.
set PYTHONPATH=\\AS5202T\Home\test\test_py\_lib\py

import r_cs では r_cs.r_cs などと指定する必要がある.
from r_cs import * とすれば r_cs や c_rs などの関数として呼び出し可能.<

他に
from r_cs import r_cs , c_rs , s_rc

最初モジュールのファイル名を r_cs.py としたが,利用時関数と区別できないので cs_r.py とした方が良さそう.