Today(2019年6月29日)

Python

  1. 數據類型
    三種分別是:字符串(string)、整數(integer)、浮點數(float)
    eg:str='字符串'、int=3三、float=3.24
    區別:字符串的識別方式很是簡單——有層名爲【引號】的皮,只要是被【單/雙/三引號】這層皮括起來的內容,不論那個內容是中文、英文。只要是被括起來的,就表示是字符串類型。整數其實和數學中定義的同樣:是正整數、負整數和零的統稱,是沒有小數點的數字。注:沒有引號 浮點數很是好識別,它比整數多了一個小數點『.』,好比下列代碼中的數字都是浮點數。
  2. 數據的應運
    四則運算:先算括號裏的在乘除加減
    字符串的拼接:+
    數據類型的查詢——type()函數html

    who = '個人'
    action = '是'
    destination = '鏡像世界'
    number = 153
    code = 3.32
    
    print(type(who))
    print(type(action))
    print(type(destination))
    print(type(number))
    print(type(code))

    結果:
    bash:124$ python ~/classroom/apps-1-id-5cd9765619bbcf0001554798/124/main.py
    <class 'str'>
    <class 'str'>
    <class 'str'>
    <class 'int'>
    <class 'float'>python

    做用:能夠驗證數據類型瀏覽器

sessionStorage

<!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>菜鳥教程(runoob.com)</title>
    </head>
    <body>
    
    <div id="result"></div>
    
    <script>
    // 檢測瀏覽器支持
    if (typeof(Storage) !== "undefined") {
        // 存儲
        sessionStorage.setItem("lastname", "Smith");
        // 檢索
        document.getElementById("result").innerHTML = sessionStorage.getItem("lastname");
    } else {
        document.getElementById("result").innerHTML = "Sorry, your browser does not support Web Storage...";
    }
    </script>
    
    </body>
    </html>

能夠在Application中的sessionStorage查看bash

for循環

*注意:使用的時候儘可能弄清楚循環的次數和相關數據儘可能不要把數據弄錯session

相關文章
相關標籤/搜索