https://zhidao.baidu.com/question/748233720330351012.html linux中使用硬链接 ln a.txt b.txt 查看硬链接 ls -il 关于硬链接磁盘空间的占用情况 http://www.mamicode.com/info-detail-1 ...
1 # bytes object 2 b = b"example" 3 4 # str object 5 s = "example" 6 7 # str to bytes 8 bytes(s, encoding = "utf8") 9 10 # bytes to str 11 str(b, enco... ...
分类:
编程语言 时间:
2018-01-21 00:01:11
阅读次数:
203
#!/bin/shread -p "Input line number: " linefor((i=0;i<$line;i++))do for((k=i+1;k<$line;k++)) do echo -n " " done for((j=0;j<$((2*$i+1));j++)) do echo ...
分类:
系统相关 时间:
2018-01-21 00:01:04
阅读次数:
244
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 ...
分类:
其他好文 时间:
2018-01-21 00:00:55
阅读次数:
208