# 判断输入的字符是不是数字,以及它是否大于等于0,如果大于0,返回它,小于0,返回它的相反数。def function(x): if x.isdigit() and int(x) >= 0: # 判断是否都是数字,是的话赋予int型 return x elif x.isalpha(): # 判断是 ...
分类:
编程语言 时间:
2021-07-19 16:38:52
阅读次数:
0
·数字个数 str=input() cnt=0; for i in range(len(str)): if(str[i].isdigit()): cnt+=1 print(cnt) Caesar Secret str=input("请输入一个字符串:") caesar="" n=input("请输入 ...
分类:
编程语言 时间:
2021-06-02 16:37:16
阅读次数:
0
#isalpha()判断字符串是否只为字母和汉字test = 'alex国'print(test.isalpha())#isdecimal()判断字符串是否为数字#isdigit()判断字符串是否为数字,还能判断其它格式的数字,①-⑨能判断#isnumeric()上面两个都可以判断,还可以判断中文数 ...
分类:
其他好文 时间:
2021-02-05 10:55:49
阅读次数:
0
打了一个用重载的读优,大家可以用用 struct FastIO { template <typename T> FastIO& operator >> (T& In) { In = 0; char Ch = getchar (); int Flag = 1; for (; ! isdigit (Ch ...
分类:
其他好文 时间:
2020-12-10 10:43:31
阅读次数:
3
s为字符串s.isalnum() 所有字符都是数字或者字母s.isalpha() 所有字符都是字母s.isdigit() 所有字符都是数字s.islower() 所有字符都是小写s.isupper() 所有字符都是大写s.istitle() 所有单词都是首字母大写,像标题s.isspace() 所有 ...
分类:
编程语言 时间:
2020-11-04 18:36:18
阅读次数:
19
题面 #include <bits/stdc++.h> using namespace std; template<typename temp> void read(temp &x){ x = 0; temp f = 1; char ch; while(!isdigit(ch = getchar() ...
分类:
其他好文 时间:
2020-07-28 22:35:46
阅读次数:
61
#include<bits/stdc++.h> using namespace std; #define int long long namespace yspm{ inline int read() { int res=0,f=1; char k; while(!isdigit(k=getchar ...
分类:
其他好文 时间:
2020-07-27 23:34:24
阅读次数:
65
元组 #组内元素可读,不能被改变 tup1=() #空元组 tup2=(1,) #一个元素后添加逗号 嵌套列表 a = [[1,2,3],'lyyyyy',4,(2,3,4)] b = a[0] b[0] = 1 → a[0][0] = 1 小技巧 1、if s.isdigit():s = int( ...
分类:
编程语言 时间:
2020-07-19 00:59:32
阅读次数:
269
a_list = [ ('mac',9000), ('kindle',8000), ('tesla',6000), ('python book',105),]saving = input('输入你的钱:')shopping = []if saving.isdigit():#如果输入的为数字,转换为整 ...
分类:
其他好文 时间:
2020-07-16 11:52:13
阅读次数:
75
#include<bits/stdc++.h> using namespace std; #define int long long namespace yspm{ inline int read() { int res=0,f=1; char k; while(!isdigit(k=getchar ...
分类:
其他好文 时间:
2020-06-26 11:06:32
阅读次数:
48