#Python TQC考題202_倍數判斷
x=eval(input())
if x%3==0 and x%5==0:
print(“{} is a multiple of 3 and 5.”.format(x))
#沒有要設定格式, { }中的:可加可不加
#加了:也可正常執行
elif x%3==0 and x%5!=0:
print(“{} is a multiple of 3.”.format(x))
elif x%3!=0 and x%5==0:
print(“{} is a multiple of 5.”.format(x))
else:
print(“{} is not a multiple of 3 and 5.”.format(x))

# { }中有加:仍可正常執行:


# n%3 == 0,後面再加 and n%5 != 0
#看似比較嚴謹,但沒加沒出錯



![Python: pandas.DataFrame (df) 的取值: df [單一字串] 或df [list_of_strings] 選取一個或多個columns; df [切片] 或 df [bool_Series] 選取多個rows #bool_Series長度同rows, index也需要同df.index ,可以使用.equals() 確認: df.index.equals(mask.index) Python: pandas.DataFrame (df) 的取值: df [單一字串] 或df [list_of_strings] 選取一個或多個columns; df [切片] 或 df [bool_Series] 選取多個rows #bool_Series長度同rows, index也需要同df.index ,可以使用.equals() 確認: df.index.equals(mask.index)](https://i1.wp.com/savingking.com.tw/wp-content/uploads/2025/04/20250420212553_0_6fb2c3.png?quality=90&zoom=2&ssl=1&resize=350%2C233)







近期留言