Python第一次作業

2021-09-29 03:58:26 字數 1369 閱讀 8320

os.mkdir(path):建立檔案

os.rename(path1,path2):重新命名檔案

os.rkdir(path):刪改檔案

**:

import os

path1=

"c:/mywork"

os.mkdir(path1)

path2=

"c:/mywork"

os.rename(path1,path2)

os.rmdir(path2)

思路:建立列表,用迴圈實現向列表輸入n個元素,利用函式list.sort()進行列表的排序。

**:

import os

n=int

(input

("n = "))

list1=

i=0while ix=

int(

input

("x = "

) i+

+list1.sort(

)print

(list1)

思路:

**:

import os

n=int

(input

("n = "))

list1=

list2=

i=0while ix=

int(

input

("x = "

) i+=

1list2=

list

(set

(list1)

)print

(list2)

import os

n=int

(input

("n = "))

i=0j=0

dicts=

print

("請輸入姓名和學號"

)while iname=

input

("姓名:"

) number=

int(

input

("學號:"))

dict

=dict

['姓名:'

]=name

dict

['學號:'

]=number

dicts[i]

=dict

i +=

1a =

input

("查詢的姓名:"

)while jif a in dicts[j]

['姓名:']:

print

(dicts[j]

['學號: '])

j+=1

python第一次作業

1.輸入年 月,輸出本月有多少天 1.輸入年月 year int input year month int input month 2.判斷是那個月 if month 4 or month 6 or month 9 or month 11 print 30天 3.判斷是不是閏年,閏年2月29天,平年...

Python第一次作業

sheshidu float input 輸入攝氏度 huashi 9 5 sheshidu 32 print sheshidu,攝氏度等於 huashi,華氏度 banjing float input 輸入半徑 gao float input 輸入高 dimianji banjing banjin...

python第一次作業

1 使用while迴圈輸入 1 2 3 4 5 6 8 9 101 i 1 2while i 11 3if i 7 4print i 5else 6 pass 7 i 1 2 求1 100的所有數的和i 1sum 0 for i in range 1,101 i i sum sum 0 i prin...