test2
-
linux 中shell实现字符串的逆向输出
001、 [root@PC1 test2]# echo “dsfedw” ## 测试字符串 dsfedw [root@PC1 test2]# echo “dsfedw” | a…
-
linux 中创建命令别名
1、临时创建 root@PC1:/home/test2# ls a.txt root@PC1:/home/test2# cat a.txt j k e s f g x v b …
-
Python基础语法(二十一)–闭包之装饰器
装饰器 装饰器的原理就是闭包,调用方式不变 def test(func): print(‘—-func—-‘) def test2(): print(‘—-test2这…