原创 DAZ 3D 軟件簡單安裝和使用

DAZ 3D 軟件簡單安裝和使用免費資源下載 這個軟件對我來說真是一個神奇巨坑,從下載到安裝至少用了我4天的時間。但是不得不說其中很大一部分原因是因爲網絡問題吧,如果除去這些亂七八糟的問題,其實整個安裝過程也挺快的(誰說不是呢呵呵

原创 python 基礎03 正則表達式

# 正則表達式需要導入re包 import re # 原句 str = "this is crowler test" # pattern pat = "crowl" # 利用re的search函數搜索 result1 = re.searc

原创 Java GUI 第一篇

“` package gui; import javax.swing.JFrame; public class GUITest extends JFrame { public static final int width = 1280;

原创 python 基礎02 函數

a=10 def getsum(): global b #b爲全局變量 b=a+a print("函數 getsum()運行結果爲:b = ",b) def compare(a,b):

原创 python 文件輸出輸入

#!/usr/bin/env python #!-*-coding:utf-8 -*- # 打開文件 file1 = open("./fileTest1.txt","w",1,"utf-8") file2 = open("./fileTe

原创 python 拋出異常

#!/usr/bin/env python #!-*-coding:utf-8 -*- try: # 沒有的函數,會拋出異常 printf("hello word") except Exception as e:

原创 python 基礎 01

print("Hello word") print(1 + 5) # 列表 a = ["Hello", "word", "0"] print(a) # 元祖 b = ("a", "b") # 元祖不能再賦值,即不能寫b[1]="c" pr