After a short period of new year days, I found life a little boring. So just do something funny--Python. Before we begin, what we should know first is that Python is a dynamic language, which means the type of data of every varieable Differences Bet…
01.variable ''' 변수(variable) - 자료(data)를 임시(휘발성) 저장하는 역할 - 실제 자료가 아닌 자료의 주소를 저장한다.(참조변수) ''' # 1. 변수와 자료 print('변수와 자료') # 콘솔 출력 var1 = "hello python" # or 'hello python' print(var1) # 변수 내용 출력 print(type(var1)) # 자료형 확인 - <class 'str'> #…
练习:login功能 def login(): with open(r'C:\Users\liubin\desktop\user.txt','r') as f: res=f.read() flag=1 list=res.split(',') while flag: user = input('请输入用户名:').strip() for i in range(len(list)): if '用户名' in list[i]: if(user==list[i][4:]): r_pwd=list[i+1…