Pythonpythonpython

1.python一分钟入门

2016-07-19  本文已影响645人  KaelQ

1.环境搭建

1.1 基本环境

2.快速入门

2.1 变量

a=2 
b=10
c=a+b

2.2 输入输出

a=input()
print(a)

2.3 语句

score=90
if score>60:
    print("及格")
elif score>80:
    print("不错")
else
    print("未知")
for i in range(0,100):
    print(a)

2.4 定义函数

#不含参函数
def sayhello():
    print("hello")
    
#含参函数
def say(word):
    print(word)

2.5 面向对象

#一个类
class hello:
    def sayhello(self):
        print("hello")
hello=hello()
hello.sayhello()

#一个类继承一个类
class hello:
    def sayhello(self):
        print("hello")
class hi(hello):
    def sayhi(self):
        print("hi")
hi=hi()
hi.sayhello()

2.6 引用其他py文件

# base.py文件
class hello:
    def sayhello(self):
        print("hello")
# from.py文件
import base
h=base.hello()
h.sayhello()

3.结语

关键字 功能
变量名 变量,直接定义
input() 输入
print() 输出
if 条件: (缩进)执行语句 判定语句
for 变量名 in range(起始值,终结值): (缩进)执行语句 循环语句
def 函数名: (缩进)执行语句 定义函数
class 类名: (缩进)定义类中函数 面向对象定义类
class 类名(继承的类名): (缩进)定义类中函数 面向对象继承类
import py文件名 引用其他py文件
上一篇下一篇

猜你喜欢

热点阅读