if語句

飞雪飘鸿發表於2024-03-26
#!/usr/bin/python3
# -*- coding: UTF-8 -*-
a=8
if a>7:
	print("大於")
elif a<7:
    print("小於")

  

相關文章