pyhton之路【第一篇】python變數和if語句
阿新 • • 發佈:2018-11-11
一.初識python
1.第一句python
-字尾名是可以任意?
-匯入模組
==>以後檔案字尾名.py
#!/usr/bin/env python # -*- coding:utf8 -*- print('Hello world!')
2.兩種執行方式
python直譯器 py檔案路徑
python 進入直譯器
實時輸入並獲取到執行結果
3.直譯器路徑
#!/usr/bin/env python
4.編碼
# -*- coding:utf8 -*-
5.執行一個操作
提醒使用者輸入:使用者和密碼
獲取使用者名稱和密碼,監測:使用者名稱=root 密碼=root
正確:登陸成功
錯誤:登陸失敗
6.變數
-字母
-數字
-下劃線
ps:
數字不能開頭
7.條件語句
'''求取最大值''' a=input('請輸入一個值:') b=input('請輸入一個值:') c=input('請輸入一個值:') num_max=0 if a<b : num_max=b if b>c : num_max=b else: num_max=c else: num_max=a if a>c : num_max=a else: num_max=c print('最大值為:',num_max)
#and 表示並且 or 表示或者 not表示不滿足後面的條件 age=int(input('請輸入年齡')) sex=input('請輸入性別') if age>=19 and sex=='男': print ('該上班了') elif age<18 or sex=='女': print('上學吧還是') elif not(sex=='男' and sex=='女'): print('既不是男也不是女') else: pass#以後要填充程式碼的,為了保證不會出現語法錯誤