有些內容使用中英雙語,有些只有英文或中文。歡迎使用與分享任何內容,但先來信告知並標示此部落格為出處。
Some parts use both Chinese and English, but some parts use only one language. Feel free to share, but please contact me first and list this blog as your reference.

2014年3月15日 星期六

Python 學習小筆記 (一) - Python Syntax and Tip Calculator

Python 學習小筆記 for Codecademy Python

用於自我複習跟快速入門,因我對C, C++, JAVA更有經驗,所以這份筆記是以學過前述語言的角度所撰,如果以前學過這三種語言之一,可能會看得比較順,如果沒有請去找正規一點的教學吧XD

前往 Python 學習小筆記 (二) - Strings & Console Output


1.          statement結尾不用加上Ex: tmp_int = 5

2.          變數不用宣告,直接用
3.          變數型態有: int, float, bool (True, False 而非true, false)
4.          變數命名。Ex: variable_bool = True

5.          # 來加上一行的註解(不是用//開頭)
6.          """"""來加上多行的註解 (不是使用 /* …. */,是使用三個雙引號)

7.          基本IO: 輸出,直接打 printEx: print variavle_name

8.          運算式,加(+) (-) (*) (/) modulo求餘數(%)都一樣
   開方不同,使用兩個* Ex: 2 ** 3 à23次方 (不是 2^3)


9.          Function 不使用{},用縮排(tab or 空格)來表示
  Function EX:

  def spam():
      eggs = 12
      return eggs
  print spam()


前往 Python 學習小筆記 (二) - Strings & Console Output

If you want to use (copy, paste or quote) my original article, please contact me through email (autek.roy@gmail.com). If there is any mistake or comment, please let me know. :D

如要使用(複製貼上或轉載)作者原創文章,請來信跟我聯絡 (autek.roy@gmail.com)。如果有發現任何的錯誤與建議請留言或跟我連絡。 : )

沒有留言:

張貼留言

請留下您的任何想法或建議!
Please leave any thought or comment!