Commit f604b48a by BellCodeEditor

save project

parent 3faf4b37
Showing with 34 additions and 2 deletions
import tkinter
root = tkinter.TK()
root.title("注册")
root.geometry("400x320")
root.mainloop()
\ No newline at end of file
"""读取csv文件"""" def binary_search(num,alist):
\ No newline at end of file low = 0
high = len(alist)
while low<high:
mid = (low +high)/2
guess = alist[mid]
if guess == num:
break
elif guess <num:
low = mid +1
else:
high = mid - 1
return None
import tkinter
root = tkinter.TK()
root.title("注册")
root.geometry("400x320")
root.mainloop()
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment