1.已知『星期一星期二星期三星期四星期五星期六星期日 』,輸入數字(1-7),輸出相應的『星期幾』
s='星期一星期二星期三星期四星期五星期六星期日'
d=int(input('輸入1-7:'))
2.輸入學號,識別年級、專業、班級、序號
s=input('請輸入學號:')
print('年級是:',s[0:4])
print('專業是:',s[4:7])
print('班級是:',s[7:8])
print('序號是;'+s[-3:])
3.輸入身份證號,識別地區、年齡、性別
id=input('請輸入身份證號:')
print('地區是:'+id[0:6])
print('年齡是:',(2017-int(id[6:10])))
a=int(id[16])
if a%2==1:
print('性別是:男')
else:
print('性別是:女')
4.len(),eval(),+,*,in,chr(),轉義\n\t\\
print(len(h))
print(eval('4+5'))
a='i'
b=' '
c='can'
d=' '
e='do'
print(a+b+c+d+e)
r='加油'
5.輸出全部的星座符號,以反斜線分隔
字串基本操作
include unsigned int strlenth char s 獲取字串長度 return lenth void strcopy char target,char source 字串拷貝 int strcompare char s,char t 字串比較,s t,則返回1 s t,則返回0...
字串基本操作
遞迴求字串長度 int recurlength char str 字串中最後乙個引數的長度 int lastwordlen char str,int len int lastwordlen char str return lastlen 字串記憶體的拷貝 實現memmove函式 char my me...
字串基本操作
判斷字串開頭結尾字元 string.startswith l 判斷字串是否以l開頭 string.endswith n 判斷字串是否以n結尾 返回字串中字元的位置 string.find x 找到這個字元返回下標,多個時返回第乙個 不存在的字元返回 1 string.index x 找到這個字元返回...