Skip to content

Instantly share code, notes, and snippets.

View LuoTail's full-sized avatar

LuoTail LuoTail

  • 06:48 (UTC +08:00)
View GitHub Profile
@LuoTail
LuoTail / 户晨风的python.py
Created October 26, 2025 13:03
检测你是苹果人还是安卓人(一个刚学py的畜中牲练手做的,很烂并且像史qwq)
#赋值
phone=input("你用的是苹果手机还是安卓手机")
car=input("你开车的是特斯拉吗")
cat=int(input("猫花了多少钱"))
house=input("你的房子是在北上广深吗")
shop=input("你去山姆超市吗")
#判断
if phone=="苹果手机" and car=="是" and cat>=5000 and house=="是" and shop=="去":
print("你是苹果思维,尊贵的苹果人")
print("开特斯拉,养苹果猫,住苹果房子,逛苹果超市")