變數:
標示符:第乙個字元必須由下面的乙個開頭
字母下劃線(_).
百分號(%).
其餘的字元可有以下的組成
字母下劃線(_).
百分號(%).
at signs (@).
pound signs (#).
dollar signs ($).
基本的資料型別:
%binary 二進位制資料
%boolean 布林值
%currency 貨幣
%date 時間
%float 浮點數
%integer 整數
%list 列表
%name 名字
%numeric 實數
%status 狀態
%string 字串
%time 時間
%timestamp 日期+時間
class
text.patient
extends
%persistent
訪問方式:
1.web儲存
2.物件儲存
3.sql儲存
4.多維儲存
常用函式:
時間函式:
$h 得到當前系統時間
user>w $h //列印當前系統時間
63523,55713 //前半部分為當前日期,後半部分為時間
user>w $zd("63523",3) //把得到的系統日期轉換成yy-mm-dd
2014-12-02
user>w $zt("55713",1) //得到的系統時間轉換成 hh-mm-ss
15:28:33
user>w $zdh("2014-12-02",3)//把秒數轉換成時間戳
user>w $zth("15:28:33","3")//把秒數轉換成時間戳
user>w $zdt($h,3) //把系統時間轉換成yy-mm-dd hh-mm-ss
2014-12-02 15:42:54
Python基礎語法彙總 2 基礎函式介紹
函式的使用方法 函式名 引數 注 引數可有可無 變數 input 提示資訊字串 例如我們執行 a input 請輸入 後系統會出現以下提示 輸入要輸入的內容後回車結束輸入。print 輸出函式中,引數可以為字串,例如print hello world 此時輸出的結果就是hello world 引數也...
SHELL程式設計語法彙總
注意!等號左右不能有空格 a 12 變數的定義,弱型別,可以用不同角度理解變數的型別可以是整型12,浮點型12,字串12 a helloworlda pwd a 字串拼接,zsh a 區域性變數 local a 12 位置變數 0 獲取當前正在執行的shell指令碼的檔名,包括路徑。類似c語言mai...
方括號語法彙總
1 方括號語法一 const prop age const person 給person新增乙個age的屬性 person prop 18 console.log person script 2 方括號語法二 方括號語法可以寫在物件字面量中 const prop age const person c...