匯入自己寫的庫只要在同一檔案下便可呼叫
呼叫語句為import a
from a import add
還有乙個一直搞不懂的地方就是(ifname=「main」)
意思就是在本模組中後面的**內容執行可見,但是被匯入到其他模組執行時候是不可見的。
專案1專案2
專案3乙個簡單的**是這麼建立的:
專案value
電腦$1600
手機$12
導管$1
使用:---------:
居中
使用:----------
居左
使用----------:
居右
第一列第二列
第三列第一列文字居中
第二列文字居右
第三列文字居左
smartypants將ascii標點字元轉換為「智慧型」印刷標點html實體。例如:
type
ascii
html
single backticks
'isn't this fun?'
『isn』t this fun?』
quotes
"isn't this fun?"
「isn』t this fun?」
dashes
-- is en-dash, --- is em-dash
– is en-dash, — is em-dash
markdown
text-to-
html conversion tool
authors
john
luke
乙個具有註腳的文字。1
markdown將文字轉換為 html。
您可以使用渲染latex數學表示式 katex:
gamma公式展示 γ(n
)=(n
−1)!
∀n∈n
\gamma(n) = (n-1)!\quad\forall n\in\mathbb n
γ(n)=(
n−1)
!∀n∈
n 是通過尤拉積分
γ (z
)=∫0
∞tz−
1e−t
dt
.\gamma(z) = \int_0^\infty t^e^dt\,.
γ(z)=∫
0∞t
z−1e
−tdt
.
你可以找到更多關於的資訊latex數學表示式here.
可以使用uml圖表進行渲染。 mermaid. 例如下面產生的乙個序列圖::
這將產生乙個流程圖。:
我們依舊會支援flowchart的流程圖:
如果你想嘗試使用此編輯器, 你可以在此篇文章任意編輯。當你完成了一篇文章的寫作, 在上方工具欄找到文章匯出,生成乙個.md檔案或者.html檔案進行本地儲存。
如果你想載入一篇你寫過的.md檔案或者.html檔案,在上方工具欄可以選擇匯入功能進行對應副檔名的檔案匯入,
繼續你的創作。
註腳的解釋 ↩︎
PHP匯入其他php檔案
php如何匯入其他的php檔案 引入方式 4種 include include once require require once 引入寫法 include test.php include test.php include a.php include test.php 這幾種寫法一般都是可以的。不...
python 中匯入其他模組
在寫乙個稍微大型的python工具或者專案的時候,不可避免的需要大量的匯入自定義的模組以及系統模組,由於多層次的目錄結構,使得新手再匯入自定義模組的經常出現 modulenotfounderror no module named異常 既找不到該模組的問題 基礎概念 模組 模組一般情況下是指乙個.py...
python檔案匯入 python 檔案匯入
基本匯入 import time 呼叫的時候 time.sleep 3 匯入包裡某個方法 from time import sleep 呼叫的時候 sleep 3 區別import time和from time import sleep 兩種方法都可以成功匯入,但不同的匯入方式,呼叫的方式也不同。如...