Two games in the NBA ended amid emotional scenes on Tuesday as legends at separate teams marked their retirements in front of sell-out crowds.
Dirk Nowitzki scored a season-high 30 points during Dallas Mavericks' win over the Phoenix Suns, before taking centre court to give his fans an emotional goodbye. Around 1,300 miles away in Miami, Dwyane Wade said his own farewell.
Nowitzki, 40, walked out into the court to speak to the home fans after the Mavericks' 120-109 victory over the Phoenix Suns.
"Wow. I'm a little overwhelmed, as you would think. As you guys might expect, this is my last home game," he said.
The seven-foot star, a 14-time All-Star and the sixth-highest scorer in NBA history with 31,540 points, thanked fans for their support during his 21 years at the club.

"This is obviously super, super emotional, there's just too many people to really thank," he said.
"I've put you guys on a helluva ride with a lot of ups and downs and you guys always stuck with me and supported me, and I appreciate it."

Miami Heat's Wade, 37, scored 30 points in a tribute-filled night as they beat the Philadelphia 76ers 122-99.
He was honoured at the American Airlines Arena with a series of speeches and videos including one from former US President Barak Obama.

"D Wade, congratulations on a great run. I know what you're going through, saying goodbye to a career you love is never easy, I've been there. In my case though, I didn't really have a choice, my knees were shot so I had to give up basketball forever," Obama said in his tribute video.

Nowitzki will retire after the Mavericks' game in San Antonio on Wednesday, while Wade will finish his playing career in Brooklyn on the same night.

L332 NBA: Dwyane Wade and Dirk Nowitzki Say Emotional Goodbyes的更多相关文章

  1. Comparing the contribution of NBA draft picks(转)

    When it comes to the NBA draft, experts tend to argue about a number of things: at which position wi ...

  2. python抓取NBA现役球员基本信息数据

    链接:http://china.nba.com/playerindex/ 所需获取JSON数据页面链接:http://china.nba.com/static/data/league/playerli ...

  3. python抓取NBA现役球员基本信息数据并进行分析

    链接:http://china.nba.com/playerindex/ 所需获取JSON数据页面链接:http://china.nba.com/static/data/league/playerli ...

  4. Matplotlib学习---用matplotlib画热图(heatmap)

    这里利用Nathan Yau所著的<鲜活的数据:数据可视化指南>一书中的数据,学习画图. 数据地址:http://datasets.flowingdata.com/ppg2008.csv ...

  5. Web API 简单示例

    一.RESTful和Web API Representational State Transfer (REST) is a software architecture style consisting ...

  6. 见证历史 -- 2013 NBA 热火夺冠之路有感

    见证历史-- 2013 NBA 热火夺冠之路有感今年NBA季后赛从第一轮看起,到最终的热火夺冠,应该看得是最爽的一次.但一些情节和细节,回忆起来,深有感悟. 1. 做人要低调詹宁斯豪言演黑八雄鹿本赛季 ...

  7. JavaScript案例六:简单省市联动(NBA版)

    JavaScript实现简单省市(NBA版)联动 <!DOCTYPE html> <html> <head> <title>JavaScript实现简单 ...

  8. nodejs抓网易NBA数据

    var http = require("http");var cheerio = require("cheerio"); var url = "htt ...

  9. [ahu 1248] NBA Finals

    NBA Finals Time Limit: 1000 ms   Case Time Limit: 1000 ms   Memory Limit: 64 MBTotal Submission: 251 ...

随机推荐

  1. vue用npm安装删除模块element-ui mint-ui

    vue用npm安装删除模块element-ui mint-ui 在vue项目中先引入了element-ui,后来发现移动版的需要用mint-ui,所以需要先卸载了再安装.卸载element-ui:np ...

  2. 项目中常用的javascript/jquery操作

    1.判断复选框是否被选中? $("#cpuWindow").is(':checked'); 2.设置复选框被选中: $("#cpuWindow").prop(& ...

  3. double保留两位小数

    public static String format(double dValue, int lScale) { // ////负数,则装化为正数后进行四舍五入 boolean bFlag = fal ...

  4. javadate相关

    /** * 根据年月获取对应的天数 */ int getDaysByYearMonth(int year, int month) { Calendar a = Calendar.getInstance ...

  5. Weighted Quick Union with Path Compression (WQUPC)

    在WQU基础上,添加一步路径压缩. 前面的优化都是在union,路径压缩是在find上面做文章. 这里的路径压缩我还没完全搞明白,之后不断再来的,不管是理解还是博文编排素材之类的. 说是加一步压缩是确 ...

  6. 剑指offer(10)矩形覆盖

    题目描述 我们可以用2*1的小矩形横着或者竖着去覆盖更大的矩形.请问用n个2*1的小矩形无重叠地覆盖一个2*n的大矩形,总共有多少种方法? 题目分析 当然也可以逆向思维 应为可以横着放或竖着放,多以f ...

  7. Spring 学习——Spring AOP——AOP配置篇Aspect、Pointcut

    Schena——based AOP 声明 Spring所有的切面和通知器都必须放在一个<aop:config>标签内,可以同时配置多个<aop:config>元素. 每一个&l ...

  8. 5、SAMBA服务二:配置实例

    ①:SAMBA服务一:参数详解 ②:SAMBA服务二:配置实例 5.2.3.Samba共享目录配置实例 1.允许匿名用户读取/it共享目录,修改/etc/samba/smb.conf,在最后添加以下内 ...

  9. python学习(六)

  10. SQL SERVER 查看sql语句性能与执行时间

    [方法一] set statistics profile on set statistics io on set statistics time on go --sql语句 go set statis ...