Python 3.4.3 (v3.4.3:9b73f1c3e601, Feb 24 2015, 22:43:06) [MSC v.1600 32 bit (Intel)] on win32Type "copyright", "credits" or "license()" for more information.>>> 17 /3 #典型的除法返回一个浮点数5.666666666666667>>> 17 //…
10.1. Operating System Interface os库 import os os.getcwd() # Return the current working directory 'C:\Python26' os.chdir('/server/accesslogs') # Change current working directory os.system('mkdir today') # Run the command mkdir in the system shell 0 需…
一.for循环 1.1功能及语法 for循环是迭代循环机制(while是条件循环),语法如下: for i in a b c: print(i) 1.2典型例子: 1.2.1猜年龄循环 realy_age = 30 for i in range(3): age = int(input("pls input age:")) if age == realy_age: print("正确!") break elif age > realy_age: print(&q…