Commit e0661183 by BellCodeEditor

save project

parent 5ae5014d
Showing with 35 additions and 9 deletions
alist = [88, 75, 72, 82, 90, 85, 78, 91]
n = len(alist)
for i in range(0, n-1):
for j in range(0, n-1):
if alist[j] < alist[j + 1]:
alist[j], alist[j + 1] = alist[j + 1], alist[j]
print(alist)
\ No newline at end of file
username = "python"
userpassword = "123456"
while True:
name = input("老刘同事放屁有害")
password = input("密码")
if neme == username and password == userpassword:
print("登录")
break
if name != username:
print("cc费u天天投入一套衣服")
print("有乌!")
e
\ No newline at end of file
def new_input():
total = []
while True:
unit = input('请输入(q退出)')
if unit == 'q':
break
else:
try:
unit = int(unit)
except:
print("ruydthuy7f")
else:
total.append(unit)
\ 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