{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

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基础教程(第2版 修订版)

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

Python基础教程(第2版 修订版)

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ 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 }}
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
Best before

Currently unavailable.

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

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

《Python基础教程(第2版·修订版)》是经典的Python入门教程,层次鲜明,结构严谨,内容翔实,特别是最后几章,作者将前面讲述的内容应用到10个引人入胜的项目中,并以模板的形式介绍了项目的开发过程,手把手教授Python开发,让读者从项目中领略Python的真正魅力。
《Python基础教程(第2版·修订版)》既适合初学者夯实基础,又能帮助Python程序员提升技能,即使是Python方面的技术专家,也能从书里找到耳目一新的内容。

Content Description

《图灵程序设计丛书:Python基础教程(第2版 修订版)》包括Python程序设计的方方面面,首先从Python的安装开始,随后介绍了Python的基础知识和基本概念,包括列表、元组、字符串、字典以及各种语句。然后循序渐进地介绍了一些相对高级的主题,包括抽象、异常、魔法方法、属性、迭代器。此后探讨了如何将Python与数据库、网络、C语言等工具结合使用,从而发挥出Python的强大功能,同时介绍了Python程序测试、打包、发布等知识。结尾,作者结合前面讲述的内容,按照实际项目开发的步骤向读者介绍了几个具有实际意义的Python项目的开发过程。
《图灵程序设计丛书:Python基础教程(第2版 修订版)》内容涉及的范围较广,既能为初学者夯实基础,又能帮助程序员提升技能,适合各个层次的Python开发人员阅读参考。
Author Description

Magnus Lie Hetland,挪威科技大学副教授,教授算法。黑客,喜欢钻研新锐编程语言,是Python语言的坚定支持者。他写过很多Python方面的书和在线教程,比如深受读者欢迎的网上教程Instant Python。此外他还是一名业余话剧演员,从1985年首次登台至今,已经参演数十部话剧。
Comments

★“本书系统全面地讲解了Python语言,介绍的10个项目是本书大亮点。”
——Robert A. Gibson,软件工程师

★“在介绍Python语言的图书中,本书是我见过好看的一本,内容循序渐进,可读性强。强烈推荐给Python初学者。”
——.com

★“结构安排合理、基础知识讲解到位、10个项目实用,……是为数不多的给真正的初学者写的入门书。”
——网友评论
Catalogue

第1章 快速改造:基础知识
1.1 安装Python
1.1.1 Windows
1.1.2 Linux和UNIX
1.1.3 苹果机(Macintosh)
1.1.4 其他发行版本
1.1.5 时常关注,保持更新
1.2 交互式解释器
1.3 算法是什么
1.4 数字和表达式
1.4.1 长整数
1.4.2 十六进制和八进制
1.5 变量
1.6 语句
1.7 获取用户输入
1.8 函数
1.9 模块
1.9.1 cmath和复数
1.9.2 回到__future__
1.10 保存并执行程序
1.10.1 通过命令提示符运行Python脚本
1.10.2 让脚本像普通程序一样运行
1.10.3 注释
1.11 字符串
1.11.1 单引号字符串和转义引号
1.11.2 拼接字符串
1.11.3 字符串表示,str和repr
1.11.4 input和raw_input的比较
1.11.5 长字符串、原始字符串和Unicode
1.12 小结
1.12.1 本章的新函数
1.12.2 接下来学什么

第2章 列表和元组
2.1 序列概览
2.2 通用序列操作
2.2.1 索引
2.2.2 分片
2.2.3 序列相加
2.2.4 乘法
2.2.5 成员资格
2.2.6 长度、最小值和最大值
2.3 列表:Python的“苦力”
2.3.1 list函数
2.3.2 基本的列表操作
2.3.3 列表方法
2.4 元组:不可变序列
2.4.1 tuple函数
2.4.2 基本元组操作
2.4.3 那么,意义何在
2.5 小结
2.5.1 本章的新函数
2.5.2 接下来学什么

第3章 使用字符串
3.1 基本字符串操作
3.2 字符串格式化:精简版
3.3 字符串格式化:完整版
3.3.1 简单转换
3.3.2 字段宽度和精度
3.3.3 符号、对齐和用0填充
3.4 字符串方法
3.4.1 find
3.4.2 join
3.4.3 lower
3.4.4 replace
3.4.5 split
3.4.6 strip
3.4.7 translate
3.5 小结
3.5.1 本章的新函数
3.5.2 接下来学什么

第4章 字典:当索引不好用时
4.1 字典的使用
4.2 创建和使用字典
4.2.1 dict函数
4.2.2 基本字典操作
4.2.3 字典的格式化字符串
4.2.4 字典方法
4.3 小结
4.3.1 本章的新函数
4.3.2 接下来学什么

第5章 条件、循环和其他语句
5.1 print和import的更多信息
5.1.1 使用逗号输出
5.1.2 把某件事作为另一件事导入
5.2 赋值魔法
5.2.1 序列解包
5.2.2 链式赋值
5.2.3 增量赋值
5.3 语句块:缩排的乐趣
5.4 条件和条件语句
5.4.1 这就是布尔变量的作用
5.4.2 条件执行和if语句
5.4.3 else子句
5.4.4 elif子句
5.4.5 嵌套代码块
5.4.6 更复杂的条件
5.4.7 断言
5.5 循环
5.5.1 while循环
5.5.2 for循环
5.5.3 循环遍历字典元素
5.5.4 一些迭代工具
5.5.5 跳出循环
5.5.6 循环中的else子句
5.6 列表推导式——轻量级循环
5.7 三人行
5.7.1 什么都没发生
5.7.2 使用del删除
5.7.3 使用exec和eval执行和求值字符串
5.8 小结
5.8.1 本章的新函数
5.8.2 接下来学什么

第6章 抽象
6.1 懒惰即美德
6.2 抽象和结构
6.3 创建函数
6.3.1 文档化函数
6.3.2 并非真正函数的函数
6.4 参数魔法
6.4.1 值从哪里来
6.4.2 我能改变参数吗
6.4.3 关键字参数和默认值
6.4.4 收集参数
6.4.5 参数收集的逆过程
6.4.6 练习使用参数
6.5 作用域
6.6 递归
6.6.1 两个经典:阶乘和幂
6.6.2 另外一个经典:二分法查找
6.7 小结
6.7.1 本章的新函数
6.7.2 接下来学什么

第7章 更加抽象
7.1 对象的魔力
7.1.1 多态
7.1.2 封装
7.1.3 继承
7.2 类和类型
7.2.1 类到底是什么
7.2.2 创建自己的类
7.2.3 特性、函数和方法
7.2.4 类的命名空间
7.2.5 指定超类
7.2.6 检查继承
7.2.7 多个超类
7.2.8 接口和内省
7.3 一些关于面向对象设计的思考
7.4 小结
7.4.1 本章的新函数
7.4.2 接下来学什么

第8章 异常
8.1 什么是异常
8.2 按自己的方式出错
8.2.1 raise语句
8.2.2 自定义异常类
8.3 捕捉异常
8.4 不止一个except子句
8.5 用一个块捕捉两个异常
8.6 捕捉对象
8.7 真正的全捕捉
8.8 万事大吉
8.9 最后……
8.1 0异常和函数
8.1 1异常之禅
8.1 2小结
8.1 2.1 本章的新函数
8.1 2.2 接下来学什么

第9章 魔法方法、属性和迭代器
9.1 准备工作
9.2 构造方法
9.2.1 重写一般方法和特殊的构造方法
9.2.2 调用未绑定的超类构造方法
9.2.3 使用super函数
9.3 成员访问
9.3.1 基本的序列和映射规则
9.3.2 子类化列表,字典和字符串
9.4 更多魔力
9.5 属性
9.5.1 property函数
9.5.2 静态方法和类成员方法
9.5.3 __getattr__、__setattr__和它的朋友们
9.6 迭代器
9.6.1 迭代器规则
9.6.2 从迭代器得到序列
9.7 生成器
9.7.1 创建生成器
9.7.2 递归生成器
9.7.3 通用生成器
9.7.4 生成器方法
9.7.5 模拟生成器
9.8 八皇后问题
9.8.1 生成器和回溯
9.8.2 问题
9.8.3 状态表示
9.8.4 寻找冲突
9.8.5 基本情况
9.8.6 需要递归的情况
9.8.7 打包
9.9 小结
9.9.1 本章的新函数
9.9.2 接下来学什么

第10章 自带电池
10.1 模块
10.1.1 模块是程序
10.1.2 模块用于定义
10.1.3 让你的模块可用
10.1.4 包
10.2 探究模块
10.2.1 模块中有什么
10.2.2 用help获取帮助
10.2.3 文档
10.2.4 使用源代码
10.3 标准库:一些最爱
10.3.1 sys
10.3.2 os
10.3.3 fileinput
10.3.4 集合、堆和双端队列
10.3.5 time
10.3.6 random
10.3.7 shelve
10.3.8 re
10.3.9 其他有趣的标准模块
10.4 小结
10.4.1 本章的新函数
10.4.2 接下来学什么

第11章 文件和流
11.1 打开文件
11.1.1 文件模式
11.1.2 缓冲
11.2 基本的文件方法
11.2.1 读和写
11.2.2 管式输出
11.2.3 读写行
11.2.4 关闭文件
11.2.5 使用基本文件方法
11.3 对文件内容进行迭代
11.3.1 按字节处理
11.3.2 按行操作
11.3.3 读取所有内容
11.3.4 使用fileinput实现懒惰行迭代
11.3.5 文件迭代器
11.4 小结
11.4.1 本章的新函数
11.4.2 接下来学什么

第12章 图形用户界面
12.1 丰富的平台
12.2 下载和安装wxPython
12.3 创建示例GUI应用程序
12.3.1 开始
12.3.2 窗口和组件
12.3.3 标签、标题和位置
12.3.4 更智能的布局
12.3.5 事件处理
12.3.6 完成了的程序
12.4 但是我宁愿用……
12.4.1 使用Tkinter
12.4.2 使用Jython和Swing
12.4.3 使用其他开发包
12.5 小结

第13章 数据库支持
13.1 Python数据库编程接口(API)
13.1.1 全局变量
13.1.2 异常
13.1.3 连接和游标
13.1.4 类型
13.2 SQLite和PySQLite
13.2.1 入门
13.2.2 数据库应用程序示例
13.3 小结
13.3.1 本章的新函数
13.3.2 接下来学什么

第14章 网络编程
14.1 少数几个网络设计模块
14.1.1 socket模块
14.1.2 urllib和urllib2模块
14.1.3 其他模块
14.2 SocketServer和它的朋友们
14.3 多个连接
14.3.1 使用SocketServer进行分叉和线程处理
14.3.2 带有select和poll的异步I/O
14.4 Twisted
14.4.1 下载并安装Twisted
14.4.2 编写Twisted服务器
14.5 小结
14.5.1 本章的新函数
14.5.2 接下来学什么

第15章 Python和Web
15.1 屏幕抓取
15.1.1 Tidy和XHTML解析
15.1.2 BeautifulSoup
15.2 使用CGI创建动态网页
15.2.1 第一步:准备网络服务器
15.2.2 第二步:加入PoundBang行
15.2.3 第三步:设置文件权限
15.2.4 CGI安全风险
15.2.5 简单的CGI脚本
15.2.6 使用cgitb调试
15.2.7 使用cgi模块
15.2.8 简单的表单
15.3 更进一步:mod_python
15.3.1 安装mod_python
15.3.2 CGI处理程序
15.3.3 PSP
15.3.4 发布
15.4 网络应用程序框架
15.5 Web服务:正确分析
15.5.1 RSS和相关内容
15.5.2 使用XML-RPC进行远程过程调用
15.5.3 SOAP
15.6 小结
15.6.1 本章的新函数
15.6.2 接下来学什么

第16章 测试
16.1 先测试,后编码
16.1.1 精确的需求说明
16.1.2 为改变而计划
16.1.3 测试的4个步骤
16.2 测试工具
16.2.1 doctest
16.2.2 unittest
16.3 单元测试以外的内容
16.3.1 使用PyChecker和PyLint检查源代码
16.3.2 性能分析
16.4 小结
16.4.1 本章的新函数
16.4.2 接下来学什么

第17章 扩展Python
17.1 考虑哪个更重要
17.2 非常简单的途径:Jython和IronPython
17.3 编写C语言扩展
17.3.1 SWIG
17.3.2 自己研究
17.4 小结
17.4.1 本章的新函数
17.4.2 接下来学什么

第18章 程序打包
18.1 Distutils基础
18.2 打包
18.2.1 建立存档文件
18.2.2 创建Windows安装程序或RPM包
18.3 编译扩展
18.4 使用py2exe创建可执行程序
18.5 小结
18.5.1 本章的新函数
18.5.2 接下来学什么

第19章 好玩的编程
19.1 为什么要好玩
19.2 程序设计的柔术
19.3 原型设计
19.4 配置
19.4.1 提取常量
19.4.2 配置文件
19.5 日志记录
19.6 如果还没烦
19.7 如果还想学
19.8 小结

第20章 项目1:即时标记
20.1 问题是什么
20.2 有用的工具
20.3 准备工作
20.4 初次实现
20.4.1 找出文本块
20.4.2 添加一些标记
20.5 再次实现
20.5.1 处理程序
20.5.2 处理程序的超类
20.5.3 规则
20.5.4 规则的超类
20.5.5 过滤器
20.5.6 分析器
20.5.7 构造规则和过滤器
20.5.8 整合
20.6 进一步探索

第21章 项目2:画幅好画
21.1 问题
21.2 有用的工具
21.3 准备工作
21.4 初次实现
21.4.1 用ReportLab画图
21.4.2 生成折线
21.4.3 编写原型
21.5 再次实现
21.5.1 获取数据
21.5.2 使用LinePlot类
21.6 进一步探索

第22章 项目3:万能的XML
22.1 问题
22.2 有用的工具
22.3 准备工作
22.4 初次实现
22.4.1 创建简单的内容处理器
22.4.2 生成HTML页面
22.5 再次实现
22.5.1 调度程序的混入类
22.5.2 实现首部、页脚和默认的处理程序
22.5.3 对目录的支持
22.5.4 事件处理程序
22.6 进一步探索

第23章 项目4:新闻聚合
23.1 问题
23.2 有用的工具
23.3 准备工作
23.4 初次实现
23.5 再次实现
23.6 进一步探索

第24章 项目5:虚拟茶话会
24.1 问题
24.2 有用的工具
24.3 准备工作
24.4 初次实现
24.4.1 ChatServer类
24.4.2 ChatSession类
24.4.3 整合
24.5 再次实现
24.5.1 基础命令解释
24.5.2 房间
24.5.3 登录和退出房间
24.5.4 主聊天室
24.5.5 新的服务器
24.6 进一步探索

第25章 项目6:使用CGI进行远程编辑
25.1 问题
25.2 有用的工具
25.3 准备工作
25.4 初次实现
25.5 再次实现
25.5.1 创建文件名表单
25.5.2 创建编辑器的脚本
25.5.3 编写保存脚本
25.5.4 运行编辑器
25.6 进一步探索

第26章 项目7:自定义电子公告板
26.1 问题
26.2 有用的工具
26.3 准备工作
26.4 初次实现
26.5 再次实现
26.5.1 编写Main脚本
26.5.2 编写View脚本
26.5.3 编写Edit脚本
26.5.4 编写Save脚本
26.5.5 尝试使用
26.6 进一步探索

第27章 项目8:使用XML-RPC进行文件共享
27.1 问题
27.2 有用的工具
27.3 准备工作
27.4 初次实现
27.4.1 实现一个简单的节点
27.4.2 尝试使用首次实现
27.5 再次实现
27.5.1 创建客户端界面
27.5.2 引发异常
27.5.3 验证文件名
27.5.4 尝试使用再次实现
27.6 进一步探索

第28章 项目9:文件共享2——GUI版本
28.1 问题
28.2 有用的工具
28.3 准备工作
28.4 初次实现
28.5 再次实现
28.6 进一步探索

第29章 项目10:DIY街机游戏
29.1 问题
29.2 有用的工具
29.2.1 pygame
29.2.2 pygame.locals
29.2.3 pygame.display
29.2.4 pygame.font
29.2.5 pygame.sprite
29.2.6 pygame.mouse
29.2.7 pygame.event
29.2.8 pygame.image
29.3 准备工作
29.4 初次实现
29.5 再次实现
29.6 进一步探索

附录A 简明版本
附录B Python参考手册
附录C 在线资源
附录D Python 3.0
Introduction

新版的《Python基础教程》终于和大家见面了。如果算上这本书的前身Pratical Python,实际上这已经是第3版了。这本书也让我投入了近10年时间。这期间,Python发生了许多有趣的变化,我也在尽力更新我对这门语言的介绍。同时,Python也面临着在相当长的一段时间内最具标志性的变化:推出了第3版。在本书撰写时,最终版本还没有发布,但是其特性已跃然纸上,并且已经推出了几个可用的版本。这次升级带来一个很有意思的挑战,就是它不再向下兼容。换句话说,它并不是简单地增加一些功能,让我可以挑挑捡捡地写进书中。它同时还会改变已经存在的语言特性,也就是说Python 2.5版本中大家习以为常的事情在新版本将不再成立。
要是整个Python社区都能立即着手转换到新版本,更新所有遗留代码,那当然不会有什么问题。我只要讲解新的语言就可以了!但是,大量用旧版编写的代码还会存在,并且人们仍然有可能继续用旧版编写代码,直到第3版完全板上钉钉。
那么,怎么应付这个变化呢?首先,就算新版本有些不兼容的改变,但语言的大部分还是相同的。也就是说,如果我的程序完全用Python 2.5编写,基本上在Python 3上也能运行(在兼容版本2.6版上更不成问题)。至于那些不再正确的部分,我则持保守态度,猜测Python 3完全被大家接受还需要一定时间。本书基本上基于2.5版本编写,并且在行文中标注出在新版中会有改变的部分。除此之外,我还增加了一个附录D,概要介绍了一些主要改变。对于大多数读者来说,我觉得应该够了。
在撰写本书第2版时,我得到了许多人的帮助。就像在写前两版(本书第1版和之前的Pratical Python)一样,Jason Gilmore扶我上马,并且在项目进展的过程中扮演了重要角色。Richard Dal Porto、Frank Pohlmann和Dominic Shakeshaft在过程中也常助我一臂之力。Richard Taylor至关重要,他要确保代码完全正确(如果还是有错,大家骂我好了),而Marilyn Smith为我的写作润色不少。我还要感谢Apress的其他同仁们,包括Liz Berry、Beth Christmas、Steve Anglin和Tina Nielsen,还有那些帮我修订错误以及提出宝贵意见的读者们,其中包括Bob Helmbold和Waclaw Kusnierczyk。当然,我还要感谢所有那些将本书的前两版本买回家的读者们。

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
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

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;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

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 Yamibuy.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 over $49
Yami Easy Returns
Yami Ships from United States

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 Yamibuy.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.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

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

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

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

Show Original

{{ comment.content }}

Yami
Show All

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

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

{{ showTranslate(comment) }}Show Less

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

Show Original

{{ comment.content }}

Yami
Show All

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

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

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

You’ve Recently Viewed

About the brand

Jingdong book