码迷,mamicode.com
首页 > 编程语言 > 详细

python错题

时间:2021-03-15 11:17:38      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:find   mic   pytho   input   src   font   width   alt   bcd   

1.

技术图片

 

str1 = input()
s = ‘1234567890abcdefABCDEF‘
c = ""
for item in str1:
  if item in s:
    c = c + item

# print(str1.find(c[0]))
# print(str1.find(‘-‘))
if c == ‘‘:
  print(‘0‘)
elif str1.find(c[0])>str1.find(‘-‘):
  print(-int(c,16))
else:
  print(int(c,16))

 

python错题

标签:find   mic   pytho   input   src   font   width   alt   bcd   

原文地址:https://www.cnblogs.com/averyfork/p/14529288.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!