반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- array
- Python
- list
- 파이썬
- PANDAS
- matplotlib
- google apps script
- math
- Google Excel
- PySpark
- Kotlin
- django
- Mac
- PostgreSQL
- string
- SQL
- dataframe
- c#
- gas
- Excel
- numpy
- Tkinter
- hive
- Java
- Redshift
- Github
- Google Spreadsheet
- GIT
- Apache
Archives
- Today
- Total
목록WebBrowser (1)
달나라 노트
Python webbrowser : open url on web browser
webbrowser library makes it possible for us to open url on your browser. import webbrowser url = 'https://www.google.com' webbrowser.open(url, new=1) The above code will open google in your base web browser. new = 0 -> open url in the same browser window. new = 1 -> open url in a new browser window. new = 2 -> open url in a new browser tab.
Python/Python webbrowser
2020. 12. 22. 23:34