---
title: 0805 內部課程上傳區
tags: 內部研習
---
<style>
.navbar-brand:after {
content: " × Web:AI";
}
</style>
> [0805 課程內容](https://hackmd.io/@webduino/0805)
> [程式線上編譯環境](https://replit.com/)
:::warning
繳交規範(可以複製這裡的喔)
### 自己名字
#### 題目一
```python
# 貼上你的程式碼
```
#### 題目二
```python
# 貼上你的程式碼
```
:::
### 郭尚蓁
#### 題目一
```python
print('python')
```
#### BMI
```python
height = 180
weight = 60
BMI = weight/((height/100)**2)
if BMI < 18.5:
print('過輕')
elif 18.5 <= BMI < 23:
print('正常')
else:
print('過重')
```
---
### buber
```python
print('my name is buber')
print("my name is buber")
```
```python
name='buber'
print(name)
```
```python
number='1234'
print('我的秘密是'+number)
```
```python
a=100
b=180
bmi=a/(b**2) #沒除100
if(bmi<18.5):
print('瘦')
elif(bmi>=23):
print('肥')
else:
print('ok')
```
```python
for i in range(1,6):
print('* '*i)
```
```python
```
---
---我是分隔線
### JACK
```python
print('I AM JACK')
```
fruit = ["apple" , "banana", "grapes" , "lemon" , "mango" , "orange"]
print(fruit[0])
```python
name='Jack'
print (name)
``
```
fruit = ["apple" , "banana", "grapes" , "lemon" , "mango" , "orange"]
print(fruit)
fruit[1]="watermelon"
fruit.append("strawberries")
fruit.remove("grapes")
fruit.sort()
print(fruit)
```
```
fruit = ["apple" , "banana", "grapes" , "lemon" , "mango" , "orange"]
print(fruit)
fruit[1]="watermelon"
fruit.append("strawberries")
fruit.remove("grapes")
fruit.sort()
print(fruit[-1])
```
```
### Sam
#### 題目一
```python
print ('天天開心')
```
#### 題目二
```python
name = '麥當勞'
print (name)
```
### 謝承宏
```python
name = 'D'
print (name)
```
---
### 徐子傑
#### 題目一
```python=
print('哈囉~你好嗎~我子傑')
```
#### 題目二
```python=
name = '傑傑傑傑'
print(name)
```
#### 題目三
```python=
m = 180/100
kg = 60
BMI = kg/(m**2)
if BMI < 18.5:
print('thin')
elif BMI >= 23
print('fat')
else:
print('normal')
```
#### 題目四
``` python=
for i in range(5):
print('* ' * (i+1))
```
#### 題目五
```python=
```
---
### 阿單
#### 題目一
```python
print('Hello--我是阿單')
```
#### 題目二
```python
name = "Tom"
print (name)
```
#### 題目三
```python=
```