欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python: simple code

程序员文章站 2022-06-22 10:47:12
# !/usr/bin/env python3.6 # -*- coding: utf-8 -*- # visual studio 2017 # 2019 10 12 Geovin Du print from turtle import *; import sys; from math import... ......
# !/usr/bin/env python3.6 
# -*- coding: utf-8 -*- 
# visual studio 2017
# 2019 10 12 geovin du print
from turtle import *;
import sys;
from math import ceil;
import re;
import time;
import operator;
from copy import deepcopy;
from random import randint;



print('geovindu');

# 重复元素判定
def all_unique(lst):
    return len(lst) == len(set(lst))
x = [1,1,2,2,3,2,3,4,5,6]
y = [1,2,3,4,5]
all_unique(x) # false
all_unique(y) # true

# #字符元素组成判定
from collections import counter
def anagram(first, second):
   return counter(first) == counter(second)
anagram("abcd3", "3acdb") # true
#内存占用
variable = 30 
print(sys.getsizeof(variable)) # 24
#字节占用
def byte_size(string):
    return(len(string.encode('utf-8')))

byte_size('

                    
                
(0)
打赏 Python: simple code 微信扫一扫

相关文章:

版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。

发表评论

Python: simple code
验证码: Python: simple code