博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python--以1-31的数字作为结尾的列表?论英文好的重要性!
阅读量:5098 次
发布时间:2019-06-13

本文共 1149 字,大约阅读时间需要 3 分钟。

一、python基础教程第2板(修订版)【代码清单2-1】中有一段要求打印‘以1-31的数字作为结尾的列表’     截取代码示例:endings =['st','nd','rd'] +17*['th'] + ['st','nd','rd'] +7*['th'] +['st']   运行结果:print(endings)              ['st', 'nd', 'rd', 'th', 'th', 'th', 'th', 'th', 'th', 'th', 'th', 'th', 'th', 'th', 'th', 'th', 'th', 'th', 'th', 'th', 'st', 'nd', 'rd', 'th', 'th', 'th', 'th', 'th', 'th', 'th', 'st']       注:以上测试结果在Pycharm完成

   二、刚一开始疑虑为何列表可以那样写?稍加揣摩并Baidu了下,原来是英文的1-31天的英文末尾字符的简写,其中1-31天的英文对照如下:

   first (1st) 

   second (2nd) 
   third (3rd) 
   fourth (4th) 
   fifth (5th) 
   sixth (6th) 
   seventh (7th) 
   eighth (8th) 
   ninth (9th) 
   tenth (10th) 
   eleventh (11th) 
   twelfth (12th) 
   thirteenth (13th) 
   fourteenth (14th) 
   fifteenth (15th) 
   sixteenth (16th) 
   seventeenth (17th) 
   eighteenth (18th) 
   nineteenth (19th) 
   twentith(20th)
   twenty-first(21st)
   twenty-second(22nd)
   twenty-third(23rd)
   twenty-fourth(24th)
   twenty-fifth(25th)
   twenty-sixth(26th)
   twenty-seventh(27th)
   twenty-eighth(28th)
   twenty-ninth(29th)
   thirtith(30th)
   thirty-first(31st)

 三、由此可以看出英语在日常编码和学习的重要性,坚持编码的过程也要坚持学习English!

转载于:https://www.cnblogs.com/apff/p/7436611.html

你可能感兴趣的文章
iOS 6
查看>>
Nginx入门篇-基础知识与linux下安装操作
查看>>
一次动态sql查询订单数据的设计
查看>>
C# 类(10) 抽象类.
查看>>
1.linux ping:unknown host www.***.***
查看>>
字符串处理函数
查看>>
jenkins修改时区
查看>>
比较git commit 两个版本之间次数
查看>>
jQuery.support
查看>>
【LeetCode】167. Two Sum II - Input array is sorted
查看>>
如何在g++中添加include文件的目录
查看>>
BlockingQueue深入解析
查看>>
网络编程
查看>>
POJ -2236 Wireless Network
查看>>
CentOS6.9安装Filebeat监控Nginx的访问日志发送到Kafka
查看>>
无向图求桥 UVA 796
查看>>
Nginx+Keepalived 实现双击热备及负载均衡
查看>>
五分钟搭建WordPress博客(二)
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
jvm参数
查看>>