英文字典中文字典


英文字典中文字典51ZiDian.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 在百度字典中的解释百度英翻中〔查看〕
Pickle查看 Pickle 在Google字典中的解释Google英翻中〔查看〕
Pickle查看 Pickle 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • pickle - Understanding Pickling in Python - Stack Overflow
    Pickle module is used for serializing and deserializing the object serializing object (Pickling): Create
  • Pickle - Load variable if exists or create and save it
    Thanks for contributing an answer to Stack Overflow! Please be sure to answer the question Provide details and share your research!
  • Python: performance comparison of using `pickle` or `marshal` and using . . .
    Note that the OP doesn't mention a Python version, and cPickle doesn't exist separately from pickle in Py3 - pickle will provide the optimised version of it exists, and fall back to the pure-python version otherwise –
  • File extension naming: . p vs . pkl vs . pickle - Stack Overflow
    The extension makes no difference because "The Pickle Protocol" runs every time That is to say whenever pickle dumps or pickle loads is run the objects are serialized un-serialized according to the pickle protocol (The pickle protocol is a serialization format) The pickle protocol is python specific(and there are several versions)
  • python - Pickle with custom classes - Stack Overflow
    Really what is happening is that with the test1 py, the object being read back from the pickle file is the same as test2 py, but its using the class in memory where you had originally assigned x A When your data is being unpickled from the file, it creates a new instance of the class type, and then applies whatever instance data it needs to
  • python - How to read pickle file? - Stack Overflow
    If you simply do pickle load you should be reading the first object serialized into the file (not the last one as you've written) After unserializing the first object, the file-pointer is at the beggining of the next object - if you simply call pickle load again, it will read that next object - do that until the end of the file
  • python - How to use append with pickle? - Stack Overflow
    Pickle streams are entirely self-contained, and so unpickling will unpickle one object at a time Therefore, to unpickle multiple streams, you should repeatedly unpickle the file until you get an EOFError:
  • How to pickle an object to a certain directory?
    Normally, executing the following code will pickle an object to a file in my current directory: fp = open
  • Python pickle protocol choice? - Stack Overflow
    Python 3 no longer distinguishes between cPickle and pickle, always use pickle when using Python 3 It uses a compiled C extension under the hood It uses a compiled C extension under the hood If you are still using Python 2, then cPickle and pickle are mostly compatible, the differences lie in the API offered





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