Every other 的用法及其他

有这样一句话“Every other class agreed to my proposal.”,读到这句话我们都知道“every other”起着十分重要的作用,这句话的意思到底是同意还是不同意?如果同意,有多少人同意?

我们都知道“every other”表示“隔一个”,“every other line”和“every other day”分别是“隔行”与“隔天”的意思。如果依照这个意思,那原句就翻译为“同学中每隔一个人同意我的建议。”意思指有一半人同意我的建议,但这句话要表达的并非这个意思。

“Every other”除了上面的意思之外,还有“其余的”意思,例如“Every other girl in the class received a gift but me.”(除了我以外,班上所有其他女孩都收到了礼物。)“Jerry was late but every other boy arrived in time.”(杰瑞迟到了,但其他男孩都来得很及时。)因此,开头的原句应该翻译为“其余的同学都同意我建议。”

在英语中,分别指两个事物,我们用“one, the other”,“every other”则指“两个中的一个”,即“隔一个”,所以“every three/four”是“每三/四个”的意思。例如“The postman came only every other four days.”(邮递员要每四天才来一次。)然而,“every”还有“所有的”意思,有时也起到限定词的强调作用,例如“He knows every single person in the school.”(他认识学校里的所有人。)“every now and then”中的“every”也是一种强调。

【转载自】http://cn.stevenlichen.com/archives/794

  •  every other
     每隔…的
     Take this medicine with warm water every other day.
     这药每隔一天随温水服一次。
  •  every other
     所有其他的人(或物)
     "He was absent, but every other man was present and contributed their shares."
     "只有他缺席,所有其他的人都到了并贡献了他们自己的一份力量。"
### Python Tkinter Grid Row Column Not Working Solution When encountering issues where the `row` and `column` attributes do not seem to take effect within a Tkinter application using the grid layout manager, several factors could be influencing this behavior[^1]. The primary reasons include widgets being placed incorrectly or parent containers not properly configured. To ensure that rows and columns work as expected: - Verify all widgets are assigned appropriate parents when calling `.grid()`. Each widget should specify its direct container explicitly. - Confirm every call to `.grid()` includes both `row` and `column` parameters unless default values suffice for specific cases. Missing these can lead to unexpected placement behaviors. For more precise control over spacing between elements, consider adjusting padding options like `padx`, `pady`, which add external space around widgets; also explore internal padding via `ipadx`, `ipady`. If still facing challenges after ensuring correct usage of basic properties, inspect whether any other part of code inadvertently overrides settings through global configurations or style definitions applied broadly across multiple components. Additionally, it is beneficial to review how frames (containers) themselves are managed since their configuration directly impacts child items' positioning logic. ```python import tkinter as tk root = tk.Tk() frame = tk.Frame(root) label_1 = tk.Label(frame, text="Label 1") label_2 = tk.Label(frame, text="Label 2") # Ensure explicit specification of row/column label_1.grid(row=0, column=0, padx=10, pady=5) label_2.grid(row=1, column=1, padx=10, pady=5) frame.pack(expand=True, fill='both') root.mainloop() ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值