import webbrowser
Url=input("Enter a url : ")
webbrowser.open(Url)
#Open the page in a new browser window.
webbrowser.open_new('Url')
#Open the page in a new browser tab.
webbrowser.open_new_tab('Url')
#clcoding.com
Python Coding August 21, 2022 Python No comments
import webbrowser
Url=input("Enter a url : ")
webbrowser.open(Url)
#Open the page in a new browser window.
webbrowser.open_new('Url')
#Open the page in a new browser tab.
webbrowser.open_new_tab('Url')
#clcoding.com
Free Python PDF Books
— Python Coding (@clcoding) October 6, 2022
🧵:
Can you guess the output of the second piece of code?🐍
Posted by Python Coding on Tuesday, 16 February 2021
0 Comments:
Post a Comment