This commit is contained in:
zhaoyafan 2023-03-10 16:11:12 +08:00
parent 0a7f8afd6c
commit 1a6d9a5e29
2 changed files with 4 additions and 2 deletions

2
Lib/Hello.py Normal file
View File

@ -0,0 +1,2 @@
import requests
HELLO = 'Hello World.'

View File

@ -1,3 +1,3 @@
import requests
requests.get('https://www.baidu.com/').status_code == 200 and print('Hello World.')
from Lib.Hello import *
requests.get('https://www.baidu.com/').status_code == 200 and print(HELLO)