Catalog
One 、 brief introduction
Two 、 Knowledge point
Basic grammar
Routing jump
http Status code
3、 ... and 、 Rookie actual combat
1、 establish python file
2、 Running effect
Actual combat scene : How to use python Automatically open Baidu and enter search terms
Basic grammar
Routing jump
http Status code
Make arrangements now !
"""
Author: Rookie actual combat
Actual combat scene : How to automatically open Baidu and enter search terms
"""
# Import system package
import platform
import webbrowser
print("Hello, Rookie actual combat ")
print(" Actual combat scene : How to automatically open Baidu and enter search terms \n")
# Get input keywords
query = input(" Please enter the search term : ")
# Open Baidu according to keywords
webbrowser.open(f"https://www.baidu.com/s?wd={query}")
print("Python edition ", platform.python_version())
The browser will pop up automatically after input “ The weather ” Baidu search results
Rookie actual combat , Continuous learning !