亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
age = 19
if age>=18:
print('adult')

print(age)
浮點數是啥意思
第一個浮點數,第二個是整數,第三個是二進制
L=[75,92,59,68,99]
sum=0.0
for ch in L:
sum=sum+ch
print(sum/5)
age=8
if age>=18:
print('adult')
elif age>=6:
print('teenager')
elif age>=3:
print('kid')
else:
print('baby')
age=8
if age>=18:
print('adult')
elif age>=6:
print('teenager')
elif age>=3:
print('kid')
else:
print('baby')
a=19
if a>18:
print('adult')
else:
print('teenage')
>>> dongdongqiang=19
>>> if dongdongqiang>18:
... print('adult')
...
adult
>>> s='AABCDEFGHHIJ'
>>> abcdefgh=s[1:9]
>>> print(abcdefgh)
ABCDEFGH
>>> s1='這是一句中英文混合的Python字符串:Hello World!'
>>> print(s1)
這是一句中英文混合的Python字符串:Hello World!
T = ((1+2), ((1+2),), ('a'+'b'), (1, ), (1,2,3,4,5))
for a in T:
print(type(a))
結果:
<class 'int'>
<class 'tuple'>
<class 'str'>
<class 'tuple'>
<class 'tuple'>
所以是3個
>>> template='Life is short,you need {}'
>>> a='Python'
>>> result=template.format(a)
>>> print(result)
Life is short,you need Python
或者
>>> template='Life is short,{}'
>>> a='you need Python'
>>> result=template.format(a)
>>> print(result)
Life is short,you need Python
>>> template='Life is short,you need {}'
>>> a='Python'
>>> result=template.format(a)
>>> print(result)
Life is short,you need Python

或者
>>> template='Life is short,{}'
>>> a='you need Python'
>>> result=template.format(a)
>>> print(result)
Life is short,you need Python
可以參考一下我的:
num=0
sum=0
while num<=1000:
if num%2<>0:
num=num+1
continue
sum=sum+num
num=num+1
print(sum,num)
d = {
'Alice': [45],
'Bob': [60],
'Candy': [75],
};
socre_a=[50,61,66];
socre_b=[80,61,66];
socre_c=[88,75,90];
num=0;
while num<3:
d['Alice'].append(socre_a[num]);
d['Bob'].append(socre_b[num]);
d['Candy'].append(socre_c[num]);
num+=1;
print(d);
課程須知
如果您了解程序設計的基本概念,會簡單使用命令行,了解中學數學函數的概念,那么對課程學習會有很大的幫助,讓您學起來得心應手,快速進入Python世界。
老師告訴你能學到什么?
通過本課程的學習,您將學會搭建基本的Python開發環境,以函數為基礎編寫完整的Python代碼,熟練掌握Python的基本數據類型以及list和dict的操作,靈活使用流程控制語句。

微信掃碼,參與3人拼團

微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號

友情提示:

您好,此課程屬于遷移課程,您已購買該課程,無需重復購買,感謝您對慕課網的支持!

本次提問將花費2個積分

你的積分不足,無法發表

為什么扣積分?

本次提問將花費2個積分

繼續發表請點擊 "確定"

為什么扣積分?

舉報

0/150
提交
取消