Python Syntax
○ Python 程式碼 可加也可不加 " ; ",預設為不加 " ; "○ boolean 值的True、False,開頭字母必須為大寫
○ 註解方式
● 單行註解,在開頭前面加一個" # " 即可。例:# 單行註解
● 多行註解,在開頭前面和最後面加上三個" 雙引號(") "。例:"""多行註解"""
※ 使用 "print" 輸出
print "Welcome to Python!"
---------------------------------------------------------
Result : Welcome to Python!
_________________________________________
※ 宣告值
my_variable =10; # 宣告變數值
my_int =7; # 宣告 int 的值
my_float =1.23; # 宣告 float 的值
my_bool = True; # 宣告 boolean 的值
_________________________________________
※ 修改值 (類似override)
my_int = 7 # 初始值為7
# 最後結果想印出3
my_int = 3; # 直接改值
print my_int
---------------------------------------------------------
Result : 3
_________________________________________
※ 定義方法
def spam(): # def 等於是定義
eggs = 12
return eggs
print spam()
Result: 12
_________________________________________
※ 宣告 boolean 的值
spam = True;
eggs = False;
_________________________________________
※ 運算式 (加法)
count_to = 55+99
print count_to
---------------------------------------------------------
Result: 154
_________________________________________
※ 運算式 (指數)
○ 乘法
eggs = 2*3
○ 指數
例:eight = 2**3
10^2 = 10*10
eggs = 10**2;
print eggs
---------------------------------------------------------
Result: 100
_________________________________________
※ 求餘數 (%)
spam = 6%5;
print spam
---------------------------------------------------------
Result: 1
_________________________________________
題目
---------------------------------------------------------- Write a single-line comment on line 1. It can be anything! (Make sure it starts with
#
) - Set the variable
monty
equal toTrue
. - Set another variable
python
equal to1.234
. - Set a third variable
monty_python
equal topython
squared.
# this is a test
monty = True;
python =1.234;
monty_python=4; # 設monty_python =4
monty_python=python**2; # 設monty_python = python的次方
沒有留言:
張貼留言