摘要: #!/bin/bash #用while loop计算1到100的和 num=1 sum=0 while [ $num -lt 101 ]; do sum=$(($sum+$num)) num=$(($num+1)) done printf "sum is %s\n" $sum #!/bin/bash 阅读全文
posted @ 2020-05-30 22:37 profesor 阅读(306) 评论(0) 推荐(0) 编辑
摘要: vim打开 vim ~/.vimrc 添加 syntax on #语法高亮set number #显示行数 set hlsearch set tabstop=4 set autoindent 阅读全文
posted @ 2020-05-30 20:48 profesor 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 当需要输入密码时,为了保证密码不在屏幕上显示出来,可以考虑import getpass from getpass import getpass username = input('input your username: ') if username == 'jerry': password = g 阅读全文
posted @ 2020-05-30 15:41 profesor 阅读(327) 评论(0) 推荐(0) 编辑