1樓:匿名使用者
class hero(object):
def __init__(self):
self.heroname='英雄'
self.hp=100
def attack(self):
print('英雄正在進行普通攻擊')
class physicalhero(hero):
def attack(self):
print('英雄正在進行物理攻擊')
a=hero().attack()
b=physicalhero().attack()
2樓:匿名使用者
# -*- coding: utf-8 –*-class hero(object):
def __init__():
self.heroname="英雄"
self.hp = 100
def attack(self):
print "英雄正在進行普通攻擊"
class physicalhero(hero):
def attack(self):
print "英雄正在進行物理攻擊"
3樓:哈哈聊聊哈
iiiiiiiiuuuuuu
python程式設計題
4樓:罐子奉花童
def rev(_list):
re = list(reversed(_list))print(re)
def same(_list1,_list2):
print(same)
python程式設計題?
python程式設計題?
python程式設計題
5樓:改畫
思路基本都是先新建一個list,然後向新的list中依次新增符合的元素
python程式設計題
6樓:哦_廿一
def count(s):
res =
for c in s:
if c.isdigit():
res['digit'] += 1
elif c.islower():
res['lower'] += 1
elif c.isupper():
res['upper'] += 1
else:
res['other'] += 1
return res
#### e.g.
count('vdcde123d3*&1')>>>
python程式設計題:
7樓:匿名使用者
我用的是python3.6.x ,剛才一個題和這個一樣是你問的嗎?
8樓:玩轉資料處理
可以有償代實現你的需求
python 程式設計題
9樓:匿名使用者
def intparse(s):
try:
if s.startswith('0') and len(s)>1:
return 0
if s.startswith('-0'):
return 0
i=int(s)
if i>65536 or i<-65536:
return 0
return i
except:
return 0
print(intparse('121'))print(intparse('222121'))print(intparse('-121'))print(intparse('0121'))print(intparse('a121'))print(intparse('-0121'))
一道簡單的python程式設計題
10樓:匿名使用者
比如輸入bai 123,s 接收的是一du個字串,即zhis="123"
for開始
c='1'
eval(c) 即eval('1') ,返回dao1template[1] = '一'
end="",列印完,結尾添內
加空字元,就容不會換行
所以最後,列印的是"一二三"
Python程式設計題 輸入圓半徑,輸出圓面積
r eval input 請輸入圓的半徑 pi 3.14 s pi r 2 print 圓的面積是 format s 如果需要更精確的面積,可呼叫math庫,即可獲得更精確的答案。擴充套件資料 eval 函式用來執行一個字串表示式,並返回表示式的值。以下是 eval 方法的語法 eval expre...
急!一道關於python字典的程式設計題!求思路
幫你實現了 直接上 吧 usr bin env python coding utf 8 author qihigh class animalstation station1 none station2 none def init self self.station1 0 self.station2 ...
python程式設計,輸出99乘法口訣表
for i in range 1,10 for j in range 1,i 1 print 使用python輸出 9 9 乘法口訣表。給明確 和分析過程,要怎麼做啊?自己寫的,親測可行,望採納 def plus table for i in range 1,10 設定被乘數i,同時也是行號,第一行...