def myfont(): name = input("输入你的名字:(only English words) \t") length = len(name) for x in range(0, length): c = name[x] c = c.upper() if (c == "A"): pr ...
分类:
其他好文 时间:
2020-01-31 14:11:02
阅读次数:
69
Given a palindromic string palindrome, replace exactly one character by any lowercase English letter so that the string becomes the lexicographically ...
分类:
其他好文 时间:
2020-01-30 09:47:14
阅读次数:
94
Convert a non-negative integer to its english words representation. Given input is guaranteed to be less than 231 - 1. Example 1: Input: 123 Output: " ...
分类:
其他好文 时间:
2020-01-29 10:50:06
阅读次数:
54
题目如下: Given a palindromic string palindrome, replace exactly one character by any lowercase English letter so that the string becomes the lexicographi ...
分类:
其他好文 时间:
2020-01-27 19:23:10
阅读次数:
72
1032 Sharing (25分) To store English words, one method is to use linked lists and store a word letter by letter. To save some space, we may let the wor ...
分类:
其他好文 时间:
2020-01-26 11:51:03
阅读次数:
60
Given a non negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. Input Specificat ...
分类:
其他好文 时间:
2020-01-24 00:07:46
阅读次数:
93
最近一直在折腾ubuntu,过程中遇到过一些问题,因此决定写篇文章分享一下,毕竟推广linux,人人有责。 系统版本:ubuntu-18.04.3-desktop-amd64 语言选择“English”,好处在于文件夹的命名都是英文,毕竟在控制台敲中文还是比较麻烦的,至于中文环境,后续会进行介绍。选 ...
分类:
系统相关 时间:
2020-01-23 22:50:41
阅读次数:
113
1.集合:由不同元素组合而成(去重),呈无序状态,集合中元素为不可变类型(字符串,数字,元组) 定义:s={ , , , ,} 2.s=set(['hello','world','english','world']) print(s) //输出结果为{'world', 'english', 'hel ...
分类:
编程语言 时间:
2020-01-22 21:54:32
阅读次数:
78
Wikipedia Processing For Chinese, https://dumps.wikimedia.org/zhwiki/latest/ zhwiki latest pages articles.xml.bz2 For English, https://dumps.wikimedia ...
分类:
其他好文 时间:
2020-01-22 14:28:42
阅读次数:
115
vue-mobile-starter View README in English 基于 vue2 + vuex + vue-router 构建的移动端单页微应用,适合于vue2、vuex、vue-router核心概念的理解与掌握。 前言 做这个项目的初衷其实很简单,我司之前一直用angular、r ...
分类:
移动开发 时间:
2020-01-19 22:10:22
阅读次数:
110