240 发简信
IP属地:上海
  • 99乘法表for

    u = [1,2,3,4,5,6,7,8,9] for row in u: for col in range(1,row+1): print('...

  • 99乘法表

    row =1 while row <10: col =1 while col<=row: print ('%d * %d = %d' % (...

  • 画小星星

    画: * ** *** **** ***** 乘法: row = 0 while row < 5: row += 1 print ("*...

  • 石头剪刀布

    #石头剪刀布 import random #玩家输入 player = 0 while player!='石头' and player!='剪刀...

  • 两个整数间所有偶数的he

    f=int(input('数字1')) l=int(input('数字2')) result=f if f>l: f=l l=result re...

  • 两个整数间所有整数的和

    F = int(input("数字1:")) L = int(input("数字2:")) S = F if F > L:#排列2个值的顺序 ...

  • 收钱

    price=float(input("单价")) weight=float(input("重量")) money=price*weight pr...