工具篇-python基础知识
2020-12-13 02:48
标签:http style 日期格式 coding int span spl 决定 port 这里边只是个人对python中一些函数的简单记录,没有系统地整理python语言的相关知识点,希望大家学习时多多参考其他资料。以前用python用的贼溜,现在得复习一下子了。 ??strip函数 strip() 方法用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列。 例如: ??python中时间日期格式化符号: ??strftime函数 strftime() 函数接收时间元组,并返回表示的当地时间的字符串,格式由参数format决定。 工具篇-python基础知识 标签:http style 日期格式 coding int span spl 决定 port 原文地址:https://www.cnblogs.com/lcmichelle/p/11055565.html1 #!/usr/bin/python
2 # -*- coding: UTF-8 -*-
3
4 str = "00000003210Runoob01230000000";
5 print str.strip( ‘0‘ ); # 去除首尾字符 0
6
7
8 str2 = " Runoob "; # 去除首尾空格
9 print str2.strip();
1 #!/usr/bin/python
2 import time
3
4 t = (2009, 2, 17, 17, 3, 38, 1, 48, 0)
5 t = time.mktime(t)
6 print time.strftime("%b %d %Y %H:%M:%S", time.gmtime(t))
下一篇:一秒钟速算(WINFORM)