python与jay的龙卷风

  • 2022-07-15 20:56:51

接着写点内容看看吧


龙卷0o..oO0o....风

爱像一阵风,吹完它就走

#!/usr/bin/env python3
# -- coding: utf-8 --
s = input('birth: ')
birth = int(s)
if birth < 1990 and birth > 1980:
    print('80后')
elif birth >1990 and birth <2000:
    print('90后')    
else:
    print('00后')

这样的节奏,谁都无可奈何

啊,啊,爱情来的太快,就像龙卷风

我不想再要

  

#!/usr/bin/env python3
#-*- coding: utf-8 -*-
#def product(x,y)
#    return x * y
def product(*y):
    calc = 1
    for i in y:
        calc = calc * i
    return calc





猜你喜欢