摘要:
# author: Roy.Gimport os,sysimport time'''from module_test import mod_1 as test_1 #change module nametest_1() # use the changed name to call it# from 阅读全文
摘要:
虽然convert 和 transform 都有改变的意思,但二者的用法完全不一样.convert 是强调改变(某事物)的形式和用途:如,The classroom is converted into a room.教室被改为房间了.trasform 是强调改变某人或者某物特性:如,College 阅读全文
摘要:
# author: Roy.G# from collections import iterablefrom collections.abc import Iterable,Iteratora=[1,2,3]print(isinstance(a,Iterable)) #determine if a s 阅读全文