python中注意事項(更新)

2022-07-25 09:27:08 字數 578 閱讀 7494

1.print(a,b),print列印多個變數,預設中間會有個空格作為分隔符,預設以換行符結尾

docstring:

print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=false)

prints the values to a stream, or to sys.stdout by default.

optional keyword arguments:

file: a file-like object (stream); defaults to the current sys.stdout.

sep: string inserted between values, default a space.

flush: whether to forcibly flush the stream.

type: builtin_function_or_method

2.range(1,10),左閉右開,生成的結果為1-9 

3.input()獲得的結果是字串,如果要和數字比較,記得型別轉換

Ionic開發中注意事項 持續更新

1 angular services依賴注入的規範 自定義的service要寫在內建的angular services之後,自定義的service之間是沒有先後順序的 2 ionic1.3之後頁面為了提供效能加入了快取機制,如果不需要可以在配置頁面時將cache屬性設為false stateprov...

JS中注意事項

一 判斷中注意事項 一 所有的相對路徑都別拿來做判斷 1.img src 2.href 1.css href html index.html 3.img src 二 顏色值不能拿來做判斷 color red f00 rgb 250,0,0 三 innerhtml 值不能拿來做判斷 解決 設定開關變數...

php foreach中 注意事項

以前用foreach,總喜歡在第二次遍歷時改變value的拼寫,比如 x array a b c foreach x as value echo foreach x as value2 得到結果12 a b c a b c 並沒有什麼不妥.今天寫的時候沒有留神,發現出錯了,示例如下 x array ...