英文字典中文字典


英文字典中文字典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       







请输入英文单字,中文词皆可:

galilee    音标拼音: [g'æləl,i]
n. 古罗马州名

古罗马州名

Galilee
n 1: an area of northern Israel; formerly the northern part of
Palestine and the ancient kingdom of Israel; the scene of
Jesus's ministry

Galilee \Gal"i*lee\, n. [Supposed to have been so termed in
allusion to the scriptural "Galilee of the Gentiles." cf. OF.
galil['e]e.] (Arch.)
A porch or waiting room, usually at the west end of an abbey
church, where the monks collected on returning from
processions, where bodies were laid previous to interment,
and where women were allowed to see the monks to whom they
were related, or to hear divine service. Also, frequently
applied to the porch of a church, as at Ely and Durham
cathedrals. --Gwilt.
[1913 Webster]

Galilee
circuit. Solomon rewarded Hiram for certain services rendered
him by the gift of an upland plain among the mountains of
Naphtali. Hiram was dissatisfied with the gift, and called it
"the land of Cabul" (q.v.). The Jews called it Galil. It
continued long to be occupied by the original inhabitants, and
hence came to be called "Galilee of the Gentiles" (Matt. 4:15),
and also "Upper Galilee," to distinguish it from the extensive
addition afterwards made to it toward the south, which was
usually called "Lower Galilee." In the time of our Lord, Galilee
embraced more than one-third of Western Palestine, extending
"from Dan on the north, at the base of Mount Hermon, to the
ridges of Carmel and Gilboa on the south, and from the Jordan
valley on the east away across the splendid plains of Jezreel
and Acre to the shores of the Mediterranean on the west."
Palestine was divided into three provinces, Judea, Samaria, and
Galilee, which comprehended the whole northern section of the
country (Acts 9:31), and was the largest of the three.

It was the scene of some of the most memorable events of
Jewish history. Galilee also was the home of our Lord during at
least thirty years of his life. The first three Gospels are
chiefly taken up with our Lord's public ministry in this
province. "The entire province is encircled with a halo of holy
associations connected with the life, works, and teachings of
Jesus of Nazareth." "It is noteworthy that of his thirty-two
beautiful parables, no less than ninteen were spoken in Galilee.
And it is no less remarkable that of his entire thirty-three
great miracles, twenty-five were wrought in this province. His
first miracle was wrought at the wedding in Cana of Galilee, and
his last, after his resurrection, on the shore of Galilee's sea.
In Galilee our Lord delivered the Sermon on The Mount, and the
discourses on 'The Bread of Life,' on 'Purity,' on
'Forgiveness,' and on 'Humility.' In Galilee he called his first
disciples; and there occurred the sublime scene of the
Transfiguration" (Porter's Through Samaria).

When the Sanhedrin were about to proceed with some plan for
the condemnation of our Lord (John 7:45-52), Nicodemus
interposed in his behalf. (Comp. Deut. 1:16,17; 17:8.) They
replied, "Art thou also of Galilee?.... Out of Galilee ariseth
no prophet." This saying of theirs was "not historically true,
for two prophets at least had arisen from Galilee, Jonah of
Gath-hepher, and the greatest of all the prophets, Elijah of
Thisbe, and perhaps also Nahum and Hosea. Their contempt for
Galilee made them lose sight of historical accuracy" (Alford,
Com.).

The Galilean accent differed from that of Jerusalem in being
broader and more guttural (Mark 14:70).


请选择你想看的字典辞典:
单词字典翻译
galilee查看 galilee 在百度字典中的解释百度英翻中〔查看〕
galilee查看 galilee 在Google字典中的解释Google英翻中〔查看〕
galilee查看 galilee 在Yahoo字典中的解释Yahoo英翻中〔查看〕





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


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

































































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


  • Python3 集合 | 菜鸟教程
    Python3 集合 集合(set)是一个无序的不重复元素序列。 集合中的元素不会重复,并且可以进行交集、并集、差集等常见的集合操作。 可以使用大括号 { } 创建集合,元素之间用逗号 , 分隔, 或者也可以使用 set () 函数创建集合。 创建格式: parame = {value01,value02, } 或者 set (value) 以下是一个简单实例
  • Python set () 函数 | 菜鸟教程
    Python set () 函数 Python 内置函数 描述 set () 函数创建一个无序不重复元素集,可进行关系测试,删除重复数据,还可以计算交集、差集、并集等。 语法 set 语法: class set ( [iterable]) 参数说明: iterable -- 可迭代对象对象; 返回值 返回新的集合对象。 实例 以下实例展示了 set 的使用方法: [mycode3 type
  • Python Set difference () 方法 - 菜鸟教程
    Python Set difference () 方法 Python 集合 描述 difference () 方法用于返回集合的差集,即返回的集合元素包含在第一个集合中,但不包含在第二个集合 (方法的参数)中。
  • Python Set update () 方法 - 菜鸟教程
    Python Set update () 方法 Python 集合 描述 update () 方法用于修改当前集合,可以添加新的元素或集合到当前集合中,如果添加的元素在集合中已存在,则该元素只会出现一次,重复的会忽略。 语法 update () 方法语法: set update (set) 参数 set -- 必需,可以是元素或集合 返回值 无。 实例 合并两个集合,重复
  • Python Set union () 方法 - 菜鸟教程
    Python Set union () 方法 Python 集合 描述 union () 方法返回两个集合的并集,即包含了所有集合的元素,重复的元素只会出现一次。 语法 union () 方法语法: set union (set1, set2 ) 参数 set1 -- 必需,合并的目标集合 set2 -- 可选,其他要合并的集合,可以多个,多个使用逗号 , 隔开。 返回值 返回一个新集合
  • Python Set add ()方法 - 菜鸟教程
    Python Set add ()方法 Python 集合 描述 add () 方法用于给集合添加元素,如果添加的元素在集合中已存在,则不执行任何操作。 语法 add ()方法语法: set add (elmnt) 参数 elmnt -- 必需,要添加的元素。 返回值 无。 实例 以下实例展示了 add () 方法的使用: 实例 1 [mycode3 type='python'] fruits = {
  • Python 移除列表中重复的元素 - 菜鸟教程
    Python 移除列表中重复的元素 Python3 实例 本章节我们将学习如何从列表中删除重复的元素。 知识点有: Python 集合:集合(set)是一个无序的不重复元素序列。 Python 列表:列表是一种数据项构成的有限序列,即按照一定的线性顺序排列而成的数据项的集合,在这种数据结构上进行的基本操作包括对
  • Python Set intersection () 方法 - 菜鸟教程
    Python Set intersection () 方法 Python 集合 描述 intersection () 方法用于返回两个或更多集合中都包含的元素,即交集。
  • Python 获取列表中的所有唯一元素 - 菜鸟教程
    Python 获取列表中的所有唯一元素 Python3 实例 在 Python 中,我们可以使用多种方法来获取列表中的所有唯一元素。 最常用的方法是使用 set,因为集合(set)会自动去除重复的元素。
  • pip 使用国内镜像源 | 菜鸟教程
    默认情况下 pip 使用的是国外的镜像,在下载的时候速度非常慢,本文我们介绍使用国内清华大学的源,地址为: https: pypi tuna tsinghua edu cn simple 我们可以直接在 pip 命令中使用 -i 参数来指定镜像地址,例如: pip3 install numpy -i https: pypi tuna tsinghua edu cn simple 以上命令使用清华镜像源安装 numpy 包。 设为





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