python基本语法003

Posted qiuleizhilianlove

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基本语法003相关的知识,希望对你有一定的参考价值。

# 模块,导包,引用
# import
print("import ...-----------")
import time
#print(help(time))
print(time.ctime())


# from ... import ...
print("from ... import ...-----------")
from time import ctime,sleep
#print(help(time))
print(ctime())
sleep(2)
print(ctime())


# from time 导time下的所有方法,不建议这么写,不清楚是自定义的还是自带的
from time import *


from time import sleep as sys_sleep
def sleep(sec):
print("my sleep" + str(sec))
sys_sleep(2)
sleep(2)


from selenium import webdriver
dr = webdriver.Chrome()

from selenium.webdriver import Chrome
dr = Chrome()

技术分享图片

技术分享图片

技术分享图片

 

 

 

 



































































以上是关于python基本语法003的主要内容,如果未能解决你的问题,请参考以下文章

Python基本语法???

Python基本语法有哪些?

python基本语法规则都有哪些?

【Python基础】python基本语法规则都有哪些?

py基本语法

Python基本语法与变量的相关介绍