#1.第一次-課后習(xí)題
##1.基礎(chǔ)題
···?
a=10
?b=3
print(a/b-a)
?print(type(a/b-a))
?print(a/b*a)
?print(type(a/b*a))
?d=0.1
?print(d*a//b-a)
print(type(d*a//b-a))
?print(a//b+a%b)
?print(type(a//b+a%b))
···
#第二次-字符串練習(xí)題
##一污茵、定義字符串變量
###1.請定義三個字符串a(chǎn),b,c值分別為 I,like, python
···
a="I "
b="like "
c="python"
```
###2.請將上面三個變量合并輸出'I like python'
```
print(a+b+c)
```
##定義一個變量 s=' sdghHhf '
```
s=' sdghHgf '
print(s.strip())
s1='sdghHgf'
print(s1.upper())
s1='sdghHgf'
print(s1.lower())
s1='sdghHgf'
print(s1.find('h'))
```
##三、定義一個變量x='I {} pyhon'
```
x='I {} python'
print(x.replace('{}','like'))
print('I {} python'.format('like'))
```
##四肩袍、定義一個變量capital='人民幣100萬元'
```
capital='人民幣100萬元'
print(len(capital))
print(capital.isdigit())
```