摘要:
单多行注释就一个组合键:选中+Ctrl+/ 阅读全文
摘要:
python range() 函数可创建一个整数列表,一般用在 for 循环中。 函数语法 range(start, stop[, step]) 参数说明: start: 计数从 start 开始。默认是从 0 开始。例如range(5)等价于range(0, 5); stop: 计数到 stop 阅读全文
摘要:
1、in,成员运算符 - 如果字符串中包含给定的字符返回 True;not in,成员运算符 - 如果字符串中不包含给定的字符返回 True #!/usr/bin/python3 a = "Hello"b = "Python" if( "H" in a) : print("H 在变量 a 中")el 阅读全文