Python GUI工具Tkinter 教學筆記
一、如何安裝 Tkinterconda install -c anaconda tk二、介面的編輯可利用PAGEhttps://sourceforge.net/projects/page/PAGE is a drag-and-drop GUI generator for Python and Tkinter which generates Python modules which dis
Python零基礎班上課使用資料
data7.csvYouBike.csv
Scribus - 最佳免費桌面排版工具
Scribus(Opens in a new window) 用於開啟 Adobe InDesign 檔案的開源軟體。 它具有內置的分色和管理功能以及更多功能,而且全部免費。官方網站: https://www.scribus.net/官方下載說明頁: https://www.scribus.net/downloads/Windows 64 Bit (7, 8, 10
Python BMI 值計算
BMI 值計算公式: BMI = 體重(公斤) / 身高 2(公尺 2)例如:㇐個 52 公斤的人,身高是 155 公分,則 BMI 為: 52(公斤)/1.552 ( 公尺 2 )= 21.6利用 Python 寫 52/1.55**2BMI 規則:BMI < 18.5 表體重過輕、BMI >= 24 表體重過重、18.5 ≦ BMI <24 表體重標準請同學利用 Python
使用 for 迴圈畫出㇐個金字塔
num=5for i in range(1,num): for j in range(1,num-i): print(" ",end="") for j in range(1,2*i): print("*",en
Python零基礎
https://drive.google.com/drive/folders/15_WVxyGmK_VViZCuXf0-vCn1kOGjXwSF?usp=sharing
Wireshark 網路封包分析工具
一般常見的網路封包分析工具(Network Packet Analyzer)有Tcpdump、Sniffer、NetXRay、Wireshark(Ethereal)等,其中Wireshark雖然屬於Open Source軟體,但是其完善的功能足可與許多商業軟體相提並論。Wireshark採用GNU General Public License(GPL)授權,在GNU GPL通用授權的保障之下,使用
[Python] Big5 與 UTF-8 檔案編碼轉換解決方式(encoding)
Big5 轉 UTF-8# 開啟 Big5 輸入檔案 inF = open("big5_input.txt", "r", encoding = "Big5") # 開啟 UTF-8 輸出檔案 outF =&nb
CentOS 7 安裝 Nginx、MySQL/MariaDB、PHP5.6,架設 LEMP 網頁伺服器
架設 LEMP 網頁伺服器安裝紀錄1)時區設定查看本機時區date 設定時區為亞洲的台北:sudo timedatectl set-timezone Asia/Taipei[root@localhost /]# date Mon Jun 1 18:30:14 EDT 2020 [root@localhost
查詢 Linux 發行版與版本
方法一通常在 /etc 目錄中會有一些檔名為 *-release 的系統版本資訊檔,可以從檔案的內容就看出 Linux 的發行版名稱與版本號碼。ls -l /etc/*-release[root@localhost etc]# ls -l *-release -rw-r--r--. 1 root root&n