encoding: utf-8 """ 這是一個簡單的python程式介紹基本的語法""" x = 3 x += 2 x -= 1 print x x,y = 99.99,5 print x,y. Output:
確定! 回上一頁