You’ve Recently Viewed

{{ badge.badge_name }}
{{ item.brand_name }} {{ item.group_num + __(" Options") }}
{{ item.item_title }}
{{ item.rank.category_name }} {{ $isZh ? ' ' + item.rank.rank_name +' No.'+ item.rank.rank_num : '#'+item.rank.rank_num + ' ' + item.rank.rank_name }} {{ item.rank.category_name }}
{{ formatNumber(visualViewRate(item)) }} ({{ item.comment.comment_count > 0 ? item.comment.comment_count : __("Be the first!") }})
· {{ viewedItemSaleInfo(item) }}

{{ currency }}{{ priceFormat(item.price.shop_price) }} {{ currency }}{{ priceFormat(item.price.del_price) }}

{{ item.bundle }}
Added to cart

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami
Jingdong book

Python宝典

{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ item.valid_price }}
{{ buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start") }}
Details
Full product details
Editer Recommend

作为一门语言教程书籍。 这本书讲得非常不错! 特别是作者将各个概念和实现方式放在一起讲解,让你知其然知其所以然,显得弥足珍贵。而且在我看过的那么多编程书籍里,这本书的许多讲解和理念都很到位, 作为Python入门书来说,绝对是数一数二的。
深圳亚鼎科技有限公司 信息系统部总监 方擎
对于初学者,尤其是以前对编程没什么经验的人来说,这是一本很适合的书。书的章节内容划分合理,从最基础的讲起,循序渐进,让你逐步掌握Python的各种知识。尤其是里面的代码,是作者多年开发经验的总结,有很强的学习价值。
IBM中国商业价值研究院高级分析师 刘京华
在腾讯工作的第一个月,需要用到Python来做项目。我用三天时间把这本书看完,并马上写代码付诸实践,并得到不错的效果,感谢作者!
腾讯数据商业产品架构师 韩伟

Content Description

Python是目前流行的脚本语言之一。《Python宝典》由浅入深、循序渐进地为读者讲解了如何使用Python进行编程开发。全书内容共分三篇,分为入门篇、高级篇和案例篇。入门篇包括Python的认识和安装、开发工具简介、Python基本语法、数据结构与算法、多媒体编程、系统应用、图像处理和GUI编程等内容。高级篇包括用Python操作数据库、进行Web开发、网络编程、科学计算程多线程编程等内容。案例篇选择了3个案例演示了Python在Windows系统优化、大数据处理和游戏开发方面的应用。
本书针对Python的常用扩展模块给出了详细的语法介绍,并且给出了典型案例,通过对本书的学习,读者能够很快地使用Python进行编程开发。

Author Description

杨佩璐,双硕士学位,副教授,现就职于山东中医药大学,长期从事计算机应用技术专业的教学与科研工作,从事人工智能,计算机控制等方面的工作与研究。

Catalogue

?第1部分 入门篇
第1章 初识Python
1.1 Python是什么
1.2 Python有什么优点
1.3 其他程序设计语言中的Python
1.4 快速搭建Python开发环境
1.4.1 哪些系统中可使用Python
1.4.2 Python的下载和安装
1.4.3 用VS2008编译Python源码
1.4.4 Python开发工具:Vim
1.4.5 Python开发工具:Emacs
1.4.6 Python开发工具:PythonWin
1.4.7 其他的Python开发工具
1.5 第一个Python程序
1.5.1 从"Hello,Python!"开始
1.5.2 Python的交互解释器
1.6 本章小结
第2章 Python起步必备
2.1 Python代码的组织形式
2.1.1 用缩进来分层
2.1.2 两种代码注释的方式
2.1.3 Python语句的断行
2.2 Python的基本输入输出函数
2.2.1 接收输入的input函数
2.2.2 输出内容的print函数
2.3 Python对中文的支持
2.3.1 Python 3之前版本如何使用中文
2.3.2 更全面的中文支持
2.4 简单实用的Python计算器
2.4.1 直接进行算术运算
2.4.2 math模块提供丰富的数学函数
2.4.3 Python对大整数的支持
2.5 本章小结
第3章 Python数据类型与基本语句
3.1 Python数据类型:数字
3.1.1 整型和浮点型
3.1.2 运算符
3.2 Python数据类型:字符串
3.2.1 Python中的字符串
3.2.2 字符串中的转义字符
3.2.3 操作字符串
3.2.4 字符串的索引和分片
3.2.5 格式化字符串
3.2.6 字符串、数字类型的转换
3.2.7 原始字符串(Raw String)
3.3 Python数据类型:列表和元组
3.3.1 创建和操作列表
3.3.2 创建和操作元组
3.4 Python数据类型:字典
3.5 Python数据类型:文件
3.6 Python的流程控制语句
3.6.1 分支结构:if语句
3.6.2 循环结构:for语句
3.6.3 循环结构:while语句
3.7 本章小结
第4章 可复用的函数与模块
4.1 Python自定义函数
4.1.1 函数声明
4.1.2 函数调用
4.2 参数让函数更有价值
4.2.1 有默认值的参数
4.2.2 参数的传递方式
4.2.3 如何传递任意数量的参数
4.2.4 用参数返回计算结果
4.3 变量的作用域
4.4 最简单的函数:用lambda声明函数
4.5 可重用结构:Python模块
4.5.1 Python模块的基本用法
4.5.2 Python在哪里查找模块
4.5.3 是否需要编译模块
4.5.4 模块也可独立运行
4.5.5 如何查看模块提供的函数名
4.6 用包来管理多个模块
4.7 本章小结
第5章 数据结构与算法
5.1 表、栈和队列
5.1.1 表
5.1.2 栈
5.1.3 队列
5.2 树和图
5.2.1 树
5.2.2 二叉树
5.2.3 图
5.3 查找与排序
5.3.1 查找
5.3.2 排序
5.4 本章小结
第6章 面向对象的Python
6.1 面向对象编程概述
6.1.1 Python中的面向对象思想
6.1.2 类和对象
6.2 在Python中定义和使用类
6.2.1 类的定义
6.2.2 类的使用
6.3 类的属性和方法
6.3.1 类的属性
6.3.2 类的方法
6.4 类的继承
6.4.1 使用继承
6.4.2 Python的多重继承
6.5 在类中重载方法和运算符
6.5.1 方法重载
6.5.2 运算符重载
6.6 在模块中定义类
6.7 本章小结
第7章 异常处理与程序调试
7.1 异常的处理
7.1.1 用try语句捕获异常
7.1.2 常见异常的处理
7.1.3 多重异常的捕获
7.2 用代码抛出异常
7.2.1 用raise抛出异常
7.2.2 assert――简化的raise语句
7.2.3 自定义异常类
7.3 使用pdb调试Python脚本
7.3.1 运行语句
7.3.2 运行表达式
7.3.3 运行函数
7.3.4 设置硬断点
7.3.5 pdb调试命令
7.4 在PythonWin中调试程序
7.5 本章小结
第8章 Python多媒体编程
8.1 使用PyOpenGL绘制三维图形
8.1.1 安装PyOpenGL
8.1.2 使用PyOpenGL创建窗口
8.1.3 绘制文字
8.1.4 绘制二维图形
8.1.5 绘制三维图形
8.1.6 纹理映射
8.2 播放音频文件
8.2.1 使用DirectSound
8.2.2 使用WMPlayer.OCX
8.3 PyGame
8.3.1 安装PyGame
8.3.2 使用PyGame编写简单的游戏
8.4 本章小结
第9章 使用PIL处理图片
9.1 PIL概述
9.1.1 安装PIL
9.1.2 PIL简介
9.2 使用PIL处理图片
9.2.1 转换图片格式
9.2.2 生成缩略图
9.2.3 为图片添加Logo
9.3 本章小结
第10章 系统编程
10.1 访问Windows注册表
10.1.1 注册表概述
10.1.2 使用Python操作注册表
10.1.3 查看系统启动项
10.1.4 修改IE
10.2 文件和目录
10.2.1 文件目录常用函数
10.2.2 批量重命名
10.2.3 代码框架生成器
10.3 生成可执行文件
10.3.1 安装py2exe
10.3.2 使用py2exe生成可执行文件
10.3.3 使用cx_freeze生成可执行文件
10.4 运行其他程序
10.4.1 使用os.system()函数运行其他程序
10.4.2 使用ShellExecute函数运行其他程序
10.4.3 使用CreateProcess函数运行其他程序
10.4.4 使用ctypes调用kernel32.dll中的函数
10.5 本章小结
第11章 使用PythonWin编写GUI
11.1 Windows GUI编程概述
11.1.1 使用Windows API创建窗口
11.1.2 使用MFC创建窗口
11.2 创建对话框
11.2.1 创建对话框
11.2.2 向对话框添加控件
11.2.3 使用DLL文件中的资源
11.2.4 处理按钮消息
11.3 创建菜单
11.3.1 创建菜单
11.3.2 使用DLL中的菜单
11.3.3 处理菜单消息
11.4 本章小结
第12章 使用tkinter编写GUI
12.1 tkinter概述
12.1.1 创建简单的窗口
12.1.2 向窗口中添加组件
12.2 使用组件
12.2.1 组件分类
12.2.2 组件布局
12.2.3 使用按钮
12.2.4 使用文本框
12.2.5 使用标签
12.2.6 使用菜单
12.2.7 使用单选框和复选框
12.2.8 绘制图形
12.3 事件处理
12.3.1 事件表示
12.3.2 响应事件
12.4 创建对话框
12.4.1 使用标准对话框
12.4.2 创建自定义对话框
12.5 本章小结
第13章 使用wxPython编写GUI
13.1 wxPython概述
13.1.1 安装wxPython
13.1.2 创建窗口
13.2 组件
13.2.1 面板
13.2.2 按钮
13.2.3 标签
13.2.4 文本框
13.2.5 单选框和复选框
13.2.6 使用sizer布置组件
13.3 对话框
13.3.1 消息框和标准对话框
13.3.2 创建自定义对话框
13.4 菜单
13.4.1 创建菜单
13.4.2 绑定菜单事件
13.5 一个简单的文本编辑器
13.5 本章小结
第14章 使用PyGTK编写GUI
14.1 PyGTK概述
14.1.1 PyGTK安装
14.1.2 创建窗口
14.2 组件
14.2.1 标签
14.2.2 按钮
14.2.3 容器组件
14.2.4 文本框
14.2.5 单选框和复选框
14.3 消息框和对话框
14.3.1 消息框
14.3.2 标准对话框
14.3.3 自定义对话框
14.4 使用菜单
14.4.1 创建菜单
14.4.2 菜单事件
14.5 资源文件
14.5.1 使用Glade创建资源文件
14.5.2 使用资源文件
14.6 本章小结
第15章 使用PyQT编写GUI
15.1 PyQt概述
15.1.1 PyQt的安装
15.1.2 使用PyQt创建窗口
15.2 组件
15.2.1 标签
15.2.2 布局组件和空白项
15.2.3 按钮
15.2.4 文本框
15.2.5 单选框和复选框
15.2.6 菜单
15.3 创建对话框
15.3.1 消息框和标准对话框
15.3.2 自定义对话框
15.4 使用资源
15.4.1 使用Qt Designer创建资源文件
15.4.2 使用资源文件
15.5 本章小结
第2部分 高级篇
第16章 Python与数据库
16.1 连接Access数据库
16.1.1 使用ODBC连接Access数据库
16.1.2 使用 DAO连接Access数据库
16.1.3 使用ADO连接Access数据库
16.2 使用MySQL数据库
16.2.1 安装MySQL
16.2.2 连接到MySQL
16.3 嵌入式数据库SQLite
16.4 本章小结
第17章 Python Web应用
17.1 开源Web应用服务器Zope
17.1.1 安装Zope
17.1.2 使用Zope管理界面
17.1.3 创建模板
17.1.4 添加Python脚本
17.2 使用Plone内容管理系统
17.2.1 安装Plone
17.2.2 安装Plone插件
17.3 在Microsoft IIS中使用Python
17.3.1 安装Microsoft IIS
17.3.2 在ASP中使用Python脚本
17.3.3 一个简单的例子
17.4 在Apache中使用Python
17.4.1 安装配置Apache
17.4.2 安装mod_python
17.4.3 使用Python Sever Pages创建留言板
17.5 本章小结
第18章 Python网络编程
18.1 使用socket模块
18.1.1 网络编程概述
18.1.2 使用socket模块建立网络通信
18.1.3 在局域网中传输文件
18.2 使用urllib、httplib和ftplib
18.2.1 使用Python访问网站
18.2.2 访问FTP
18.3 使用poplib和smtplib模块收发邮件
18.3.1 检查E-mail
18.3.2 发送E-mail
18.4 本章小结
第19章 处理HTML与XML
19.1 处理HTML
19.1.1 HTMLParser类简介
19.1.2 获取页面图片地址
19.1.3 查看天气预报
19.2 处理XML
19.2.1 XML基础
19.2.2 文档类型定义
19.2.3 命名空间
19.3 使用Python处理XML
19.3.1 使用xml.parsers.expat处理XML
19.3.2 使用xml.sax处理XML
19.3.3 使用xml.dom处理XML
19.4 简单的RSS阅读器
19.5 本章小结
第20章 功能强大的正则表达式
20.1 正则表达式概述
20.1.1 正则表达式的基本元字符
20.1.2 常用正则表达式分析
20.2 支持正则表达式的re模块
20.2.1 用match函数进行搜索
20.2.2 用sub函数进行内容替换
20.2.3 用split函数分割字符串
20.3 编译生成正则表达式对象
20.3.1 以"\"开头的元字符
20.3.2 用compile函数编译正则表达式
20.3.3 在正则表达式中使用原始字符串
20.4 用正则表达式对象提速
20.4.1 使用match方法匹配和搜索
20.4.2 使用sub方法替换内容
20.4.3 使用split方法分割字符串
20.5 正则表达式中的分组
20.5.1 分组的概述
20.5.2 分组的扩展语法
20.6 匹配和搜索的结果对象:Match对象
20.6.1 使用Match对象处理组
20.6.2 使用Match对象处理索引
20.7 使用正则表达式处理文件
20.8 本章小结
第21章 科学计算
21.1 NumPy和SciPy简介
21.1.1 安装NumPy和SciPy
21.1.2 NumPy简介
21.1.3 SciPy简介
21.2 矩阵运算和解线性方程组
21.2.1 矩阵运算
21.2.2 解线性方程组
21.3 使用Matplotlib绘制函数图形
21.3.1 安装Matplotlib
21.3.2 使用Matplotlib绘制图形
21.4 本章小结
第22章 Python扩展和嵌入
22.1 用C/C++扩展Python
22.1.1 VS2008编译环境的设置
22.1.2 Python扩展程序的结构
22.1.3 在Python扩展中使用MFC
22.2 在C/C++中嵌入Python
22.2.1 高层次的嵌入Python
22.2.2 较低层次嵌入Python
22.2.3 在C中嵌入Python实例
22.3 通过SWIG编写Python扩展
22.3.1 在VS中使用SWIG
22.3.3 SWIG接口文件的语法简介
22.4 Boost.Python使程序更简单
22.4.1 下载编译Boost.Python
22.4.2 使用Boost.Python简化扩展和嵌入
22.4.3 使用Pyste生成代码
22.5 本章小结
第23章 多线程编程
23.1 线程基础
23.1.1 创建线程
23.1.2 Thread对象中的方法
23.2 线程同步
23.2.1 简单的线程同步
23.2.2 使用条件变量保持线程同步
23.2.3 使用队列让线程同步
23.3 线程间通信
23.3.1 Event对象的方法
23.3.2 使用Event对象实现线程间通信
23.4 微线程――Stackless Python
23.4.1 Stackless Python概述
23.4.2 使用微线程
23.5 本章小结
第3部分 案例篇
第24章 案例1:用Python优化Windows
24.1 案例概述
24.2 创建图形化界面
24.2.1 编写脚本创建GUI
24.2.2 响应菜单事件
24.3 清理垃圾文件
24.3.1 遍历目录
24.3.2 扫描垃圾文件
24.3.3 使用多线程
24.3.4 扫描所有磁盘
24.3.5 删除垃圾文件
24.4 搜索文件
24.4.1 搜索大文件
24.4.2 按名称搜索文件
24.5 本章小结
第25章 案例2:用Python玩转大数据
25.1 案例概述
25.1.1 了解大数据处理方式
25.1.2 处理日志文件
25.1.3 案例目标
25.2 日志文件的分割
25.3 编写Map函数处理小文件
25.4 编写Reduce函数
25.5 本章小结
第26章 案例3:植物大战僵尸
26.1 案例概述
26.1.1 游戏效果
26.1.2 游戏规划设计
26.2 收集资源
26.2.1 收集图片素材
26.2.3 收集声效素材
26.3 编写初始脚本
26.3.1 定义游戏初始环境
26.3.2 导入游戏素材
26.4 编写游戏核心脚本
26.4.1 编写游戏循环脚本
26.4.2 处理事件――响应玩家的操作
26.4.3 添加角色到游戏
26.4.4 更新角色状态
26.4.5 重绘画面
26.4.6 判断角色交战状态
26.4.7 判断胜负状态
26.5 本章小结

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use {{ itemAct.title || '' }}

Bundle & Combo

Similar Items

Related Search

{{ item.userActionNumberDesc }}
Yami wechat-share qr code

Scan to Share

Python宝典

{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }}
Price:
{{ itemCurrency }}{{ priceFormat(item.member_price) }}
Buy at VVIP Price
Learn more
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __("Pay with Gift Card to get sale price: :itemCurrency:price", {'itemCurrency': itemCurrency, 'price': (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00')}) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee
{{ quantity }} {{ instockMsg }} {{ limitText }}
{{ buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start") }}
Best before

Frequently Bought Together

Total ${{ priceFormat(totalPrice) }}

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yami reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free shipping from the US over $49
Yami Easy Returns

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yami.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely.

If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.;

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free shipping from the US over $49
Yami Easy Returns

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yami.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Gifts Included with Purchase

Recommended for You

                                                       

                                                       

                                                       

                                                       

                                                       

                                                       

                                                       

                                                       

Reviews

Have your say. Be the first to help other guests.

Write a review
No reviews for this product. Showing reviews from other options.
Sort by
Default

Community photos

View All
Current Item
User Avatar VIP
:

{{ strLimit(comment, 200) }}

{{ comment.content }}

Review Image

{{ comment.imageList.length }} photos

Show Original

No related comment~

Review

Yami Yami
:

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails, 800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{ groupData }}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{ commentDetails.in_user == uid ? __('Delete') : __('Report') }}

Please write at least one word

Comments{{ '(' + replyList.length + ')' }}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply, 800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{ reply.reply_in_user == uid ? __('Delete') : __('Report') }}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

{{ brandInfo.title }}

View All

About the brand

{{ brandInfo.descView }} ...View All

{{ isZh ? album.topic_name : album.topic_ename }}

Items

{{ album.goods_count_info }}

Purchased

{{ album.bought_count_info }}

View All

{{ story.page_title }}

{{ story.page_desc }}

View the Story
Customers Also Viewed
About the brand

{{ brandInfo.title }}

{{ brandInfo.desc }}
Yami

Download the Yami App