關於變數的相關基礎筆記

2022-07-18 03:30:18 字數 745 閱讀 1046

1.宣告變數

1

#!/usr/bin/env python2#

-*- coding: utf-8 -*-

34 name= "

wangshaohan

"

上述**宣告了乙個變數,變數名為: name,變數name的值為:"wangshaohan"

變數定義的規則:

變數名只能是 字母、數字或下劃線的任意組合

變數名的第乙個字元不能是數字

以下python關鍵字不能做為變數名

['and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'exec', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'not', 'or', 'pass', 'print', 'raise', 'return', 'try', 'while', 'with', 'yield']

變數名遵循:變數名不要太長,越短越好!

name1 = "wsh"

name2 = name1

name1和name2都等於"wsh"

XTML基礎的相關筆記

xhtml的基本語法 1 在xhtml中標記名稱必須小寫 2 在xhtml中屬性必須小寫 3 在xhtml中標記必須準確鑲套 4 在xhtml中標記必須關閉 5 在xhtml中即使是空元素也必須關閉 6 在xhtml中屬性值必須用雙引號括起來 xhtml中h1到h6表示6個級別的正文標題。xhtml...

關於時間的相關基礎收集

public class timeutil 獲取指定時間的日期 param time 2016 01 11 09 43 12 格式 return public static string getdate string time catch parseexception e return 獲取英文格式...

關於white space的相關問題筆記

white space屬性共有五個 normol pre nowrap pre inline pre warp 1 white space normol 合併空白符,忽略換行符,自動換行 2 white space pre 不會合併空白符,不會忽略換行符,不會自動換行 ie7及以前的版本不支援該屬性...