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. Python 第五阶段 学习记录之---Django 进阶

    Model 一.创建表 1.基本结构 字段 AutoField(Field) - int自增列,必须填入参数 primary_key=True BigAutoField(AutoField) - bi ...

  2. WebForm内置对象:Application和ViewState、Repeater的Command用法

    一.内置对象 1.Application 存贮在服务器端,占用服务器内存生命周期:永久 所有人访问的都是这一个对象 传值:传的是object类型可以传对象. string s =TextBox1.Te ...

  3. java的四大特性

    java的四大特性是:封装.继承.多态,抽象.

  4. BIOS备忘录之IIC(touchpad)设备

    简述BIOS中对IIC device的支持,以touchpad为例. 信息收集 收集平台的硬件信息: 1. IIC controller number(PCH一般包含多个controller,我们使用 ...

  5. APScheduler(Python化的Cron)使用总结 定时任务

    APScheduler(Python化的Cron)使用总结 简介 APScheduler全程为Advanced Python Scheduler,是一款轻量级的Python任务调度框架.它允许你像Cr ...

  6. 4. Dubbo原理解析-代理之接口定义 (转)

    转载自  斩秋的专栏  http://blog.csdn.net/quhongwei_zhanqiu/article/details/41577159 一:ProxyFactory的接口定义 impo ...

  7. Odd Gnome【枚举】

    问题 I: Odd Gnome 时间限制: 1 Sec  内存限制: 128 MB 提交: 234  解决: 144 [提交] [状态] [命题人:admin] 题目描述 According to t ...

  8. js运行机制详解:event loop

    总结 阮一峰老师的博客 一.为什么JavaScript是单线程 JavaScript语言的一大特点就是单线程 那么,为什么JavaScript不能有多个线程呢?这样能提高效率啊. JavaScript ...

  9. leecode第一百六十题(相交链表)

    /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode ...

  10. 几种优化方法的整理(SGD,Adagrad,Adadelta,Adam)

    参考自: https://zhuanlan.zhihu.com/p/22252270 常见的优化方法有如下几种:SGD,Adagrad,Adadelta,Adam,Adamax,Nadam 1. SG ...