英文字典中文字典Word104.com



中文字典辭典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   







請輸入英文單字,中文詞皆可:

pickle    音標拼音: [p'ɪkəl]
n. 腌菜,泡菜;逆境,困境

醃菜,泡菜;逆境,困境

pickle
n 1: vegetables (especially cucumbers) preserved in brine or
vinegar
2: informal terms for a difficult situation; "he got into a
terrible fix"; "he made a muddle of his marriage" [synonym:
{fix}, {hole}, {jam}, {mess}, {muddle}, {pickle}, {kettle of
fish}]
v 1: preserve in a pickling liquid

Pickle \Pic"kle\, v. t. [imp. & p. p. {Pickled}; p. pr. & vb. n.
{Pickling}.]
1. To preserve or season in pickle; to treat with some kind
of pickle; as, to pickle herrings or cucumbers.
[1913 Webster]

2. To give an antique appearance to; -- said of copies or
imitations of paintings by the old masters.
[1913 Webster]


Pickle \Pic"kle\, n. [Obs.]
See {Picle}.
[1913 Webster]


Pickle \Pic"kle\, n. [Cf. D. pekel. Probably a dim. fr. {Pick},
v. t., alluding to the cleaning of the fish.]
1.
(a) A solution of salt and water, in which fish, meat,
etc., may be preserved or corned; brine.
(b) Vinegar, plain or spiced, used for preserving
vegetables, fish, eggs, oysters, etc.
[1913 Webster]

2. Any article of food which has been preserved in brine or
in vinegar.
[1913 Webster]

3. (Founding) A bath of dilute sulphuric or nitric acid,
etc., to remove burnt sand, scale rust, etc., from the
surface of castings, or other articles of metal, or to
brighten them or improve their color.
[1913 Webster]

4. A troublesome child; as, a little pickle. [Colloq.]
[1913 Webster]

{To be in a pickle}, to be in disagreeable position; to be in
a condition of embarrassment, difficulty, or disorder.
"How cam'st thou in this pickle?" --Shak.

{To put a rod in pickle}, to prepare a particular reproof,
punishment, or penalty for future application.
[1913 Webster]


Picle \Pi"cle\ ((p[i^]k"'l), n. [Prob. fr. pightel or pingle.]
A small piece of land inclosed with a hedge; a close. [Obs.]
[Written also {pickle}.]
[1913 Webster]

147 Moby Thesaurus words for "pickle":
acid, acidulant, anhydrate, baffle, bafflement, bearings,
bewilderment, bind, blast-freeze, booze up, boozify, bother, box,
bread-and-butter pickle, brine, case, chokecherry, circumstance,
clutch, complication, condition, confoundment, confusion, corn,
corner, crab apple, crock, crunch, cure, dehydrate, desiccate,
dilemma, dill pickle, discomposure, disconcert, disconcertedness,
disconcertion, disconcertment, disturbance, dry, dry-cure,
dry-salt, embalm, embarrassing position, embarrassment, enigma,
estate, evaporate, fine how-do-you-do, fix, footing, freeze,
freeze-dry, fuddle, fume, green apple, hell to pay, hobble, hole,
hot water, how-do-you-do, imbroglio, irradiate, jam, jerk, kipper,
lemon, lime, location, lot, marinade, marinate, mess, mix,
modality, mode, morass, mummify, mystery, nonplus, overtake,
parlous straits, pass, perplexity, perturbation, pinch, place,
plaster, plight, pollute, position, posture, pother, predicament,
preservatize, pretty pass, pretty pickle, pretty predicament,
problem, puzzle, puzzlement, quagmire, quandary, quick-freeze,
quicksand, rank, refrigerate, riddle, salt, scrape, season,
situation, slough, smoke, smoke-cure, sour, sour balls, sour cream,
sour grapes, sour pickle, sourdough, souse, spot, squeeze,
standing, state, station, status, stew, sticky wicket, stone,
strait, straits, stuff, swack, swamp, tight spot, tight squeeze,
tightrope, tipsify, tricky spot, unassuredness, unholy mess, upset,
verjuice, vinegar, yogurt

請選擇你想看的字典辭典:
單詞字典翻譯
Pickle查看 Pickle 在Google字典中的解釋Google英翻中〔查看〕
Pickle查看 Pickle 在Yahoo字典中的解釋Yahoo英翻中〔查看〕





安裝中文字典英文字典查詢工具!


中文字典英文字典工具:
選擇顏色:
輸入中英文單字

































































英文字典中文字典相關資料:
  • pickle - Understanding Pickling in Python - Stack Overflow
    The pickle module implements a fundamental, but powerful algorithm for serializing and de-serializing a Python object structure Pickling - is the process whereby a Python object hierarchy is converted into a byte stream, and Unpickling - is the inverse operation, whereby a byte stream is converted back into an object hierarchy Pickling (and unpickling) is alternatively known as serialization
  • Saving and loading objects and using pickle - Stack Overflow
    It seems you want to save your class instances across sessions, and using pickle is a decent way to do this However, there's a package called klepto that abstracts the saving of objects to a dictionary interface, so you can choose to pickle objects and save them to a file (as shown below), or pickle the objects and save them to a database, or
  • What difference between pickle and _pickle in python 3?
    The pickle cPickle pair received this treatment The profile module is on the list for 3 1 The StringIO module has been turned into a class in the io module Since it is a python convention that implementation details are prepended with an underscore, cPickle became _pickle
  • Missing numpy. _core. numeric when loading pandas df from pickle
    Missing 'numpy _core numeric' when loading pandas df from pickle Asked 5 months ago Modified 5 months ago Viewed 828 times
  • python - Pickle vs cPickle (?) in python3 - Stack Overflow
    There used to be cPickle in python2 7 However, I don't see it anymore in python3 pickle What ever happened to that module, did it get merged into the regular pickle module?
  • Unable to torch. load due to pickling safety error - Stack Overflow
    raise pickle UnpicklingError(_get_wo_message(str(e))) from None _pickle UnpicklingError: Weights only load failed This file can still be loaded, to do so you have two options, do those steps only if you trust the source of the checkpoint (1) In PyTorch 2 6, we changed the default value of the `weights_only` argument in `torch load` from `False` to `True` Re-running `torch load` with
  • How can I use pickle to save a dict (or any other Python object)?
    I have looked through the information that the Python documentation for pickle gives, but I'm still a little confused What would be some sample code that would write a new file and then use pickle
  • How to pip install pickle under Python 3. 9 in Windows?
    Question Which is the correct way to install pickle package under Python 3 9 in Windows 10? UPDATE There is no need to install pickle module as it comes already installed along with Python 3 x Just needed to do import pickle and voila!





中文字典-英文字典  2005-2009

|中文姓名英譯,姓名翻譯 |简体中文英文字典