reorganise

This commit is contained in:
2025-01-18 16:51:37 -05:00
parent dadfe8bc3d
commit 213a04d19f
8 changed files with 0 additions and 0 deletions

13
else.py Normal file
View File

@@ -0,0 +1,13 @@
def desired_input(mutex,T_in,fileno):
sys.stdin = os.fdopen(fileno)
while(True):
mutex.acquire()
try:
s = input('Please enter the desired Temperature: ')
except:
s = 0
T_in.Value = float(s)
T_in.value = float(s)
print T_in.Value
print T_in.value
mutex.release()