no message available什么意思_"you are a noodle"不是说“你是面条”,真正意思太气人!...

3936a6084e4faaca9ecd3586c540e6b8.png

You are a noodle 是什么意思?

noodle [ˈnuːdl]

n. 面条;大脑;傻瓜

v. 弹乐器;即兴演奏

在英语里,面条常常以复数形式 noodles 出现,毕竟我们也不会只吃一根面,当然长寿面除外,大脑和傻子也是 noodle 常见的用法。

You are a noodle

你是个傻瓜;你笨死了

面条是用面粉做的,面粉做的脑袋肯定不太灵光,you are a noodle 和中文里的“你这人的脑子是浆糊做的吧”意思差不多,都是在骂别人蠢。

例句: What he said was a pack of lies ,you are a noodle if you believe it.
他的话是一派胡言,你要是相信的话,你就是个傻瓜。

面条、大脑和傻子都是名词,其实 noodle 也有动词的词性。

1、This famous musician is playing the violin.

这位著名的音乐家正在拉小提琴。

2、He noodled at the keys.

他在琴键上随意弹了几下。

play 和 noodle都有弹奏乐器的意思,但是 noodle 是随意地弹拨乐器,认真专业地弹奏一般用 play.

use your noodle 动动你的脑子

use you noodle 动动脑子

use your head/loaf 你仔细想一想;你动动脑筋

noodle 是大脑,所以 use your noodle 也就是 use your head, 这个短语的意思不是你快点吃面,而是你快动脑子想想吧。

这里的 noodle 也可以换成 loaf.

no-brainer [ˌnoʊ ˈbreɪnər]

  • 不需要动脑筋的事情;容易的决定
  • 笨蛋;蠢人

no-brainer 指的是那些不需要认真思考就能得出答案的事情,也表示容易的决定。

描述人的时候,no-brainer 就是说一个人没脑子,同义词就是 stupid 和 fool.

例句: I am really speechless, why not use your noodle?
我真的无语了,你为什么不能动动脑子呢?

脑子短路了有哪些英文表达?

brain fart 脑子短路

大脑是不会放屁的,brain fart 不能解释为大脑放屁了,而是说大脑突然短路了。

大脑短路就像是电脑死机了,我们的大脑里会突然停止思考,出现了一片空白,甚至想不起来自己要做什么了。

虽然短路是电学上的术语,但大脑短路也可以用 short-circuit 表示。

例句: Sorry, my brain just short-circuited.Could you repeat that?
抱歉啊,我脑子刚刚短路了。你能再说一遍吗?

spaghetti western ≠ 意大利面

spaghetti western [spəˌɡeti ˈwestərn]意大利式西部片

spaghetti western 不是西方的意大利面,而是意大利式西部片。有别于美国西部片,spaghetti western通常是意大利导演拍摄的电影。

这类电影的取景地不在美国西部,而是和美国西部景色相似的欧洲地区,这些地方的拍摄成本比在美国低得多,意大利式西部片也被各国人民戏称为通心粉西部片。

western 西部片;西部小说

cowboy movie 西部片;牛仔片

spaghetti western 只是西部片的某一类型,西部片的正式表达是 western 和 cowboy movie.

例句: Sergio Leone is my favorite director of spaghetti western.赛尔乔·莱昂内是我最喜欢的意大利式西部片导演。

常见面食的英文翻译

instant noodles 方便面 方便面

WuHan Hot Noodles with Sesame Paste 武汉热干面

sliced noodles 刀削面

hand-pulled noodles 拉面

noodles with gravy 打卤面

lasagne [ləˈzænjə] 宽面;意大利千层面

fine dried noodles 挂面

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,这里提供一个简单的Python代码示例,实现餐馆菜单管理系统的基本功能。代码如下: ```python # 定义菜品类 class Dish: def __init__(self, name, price, description): self.name = name self.price = price self.description = description def __str__(self): return "{} (${:.2f}): {}".format(self.name, self.price, self.description) # 定义菜单类 class Menu: def __init__(self): self.dishes = [] def add_dish(self, dish): self.dishes.append(dish) def remove_dish(self, dish): self.dishes.remove(dish) def get_dishes(self): return sorted(self.dishes, key=lambda x: x.price) # 定义顾客类 class Customer: def __init__(self, name): self.name = name self.order = {} def add_dish(self, dish, quantity): if dish in self.order: self.order[dish] += quantity else: self.order[dish] = quantity def remove_dish(self, dish): del self.order[dish] def get_order(self): return self.order def get_total_price(self): return sum(dish.price * quantity for dish, quantity in self.order.items()) # 初始化菜单 menu = Menu() menu.add_dish(Dish("Beef Noodle", 10.99, "Hand-pulled noodles with braised beef")) menu.add_dish(Dish("Hotpot", 20.99, "Spicy hotpot with various ingredients")) menu.add_dish(Dish("Fried Rice", 8.99, "Fried rice with egg, green onion and soy sauce")) # 初始化顾客 customer = Customer("John") # 顾客下单 customer.add_dish(menu.get_dishes()[0], 2) customer.add_dish(menu.get_dishes()[1], 1) # 输出菜单和订单 print("Menu:") for dish in menu.get_dishes(): print(dish) print("Order:") for dish, quantity in customer.get_order().items(): print("{} x {} = ${:.2f}".format(dish.name, quantity, dish.price * quantity)) print("Total price: ${:.2f}".format(customer.get_total_price())) ``` 在这个示例中,我们定义了菜品类(Dish)、菜单类(Menu)和顾客类(Customer),并通过这些类实现了餐馆菜单管理系统的基本功能。我们通过实例化这些类,并调用相关方法,来添加菜品、下单、结账等操作。当然,这个示例只是一个简单的示例,实际应用中需要根据实际需求进行修改和扩展。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值