本文目录一览:
python必背入门代码是什么?
具体如下:
1、反转字符串:
#Reversing a string using slicing
my_string ="ABCDE”
reversed string = my_string[:: -1]
print( reversed _string)
#output
#EDCBA
2、使用标题类:
my_string = "my name is chaitanya baweja"
newstring =my string.title(
print(new_string)
# My Name Is chaitanya Baweja
3、查找字符串的唯一要素:
my_string = "aavvccccddddeee"
temp_set = set(my_string)
new string = -join(temp_set)
print(new_string)
4、输出 n次字符串或列表:
n = 3
my_string = "abcd"my _list = [1,2,3]
print(my_string*n)
print(my_list*n)
import streamlit as st
5、列表解析:
n = 4
my_list = [o]*n#[o, o,o,o]
6、两个变量之间的交换值:
original_list =[1,2,3,4]
new list =[2*x for x in original_list]
print(new_list)
#[2,4,6,8]
Python经常被用于Web开发。比如,通过mod_wsgi模块,Apache可以运行用Python编写的Web程序。Python定义了WSGI标准应用接口来协调Http服务器与基于Python的Web程序之间的通信。一些Web框架,如Django,TurboGears,web2py,Zope等,可以让程序员轻松地开发和管理复杂的Web程序。
在很多操作系统里,Python是标准的系统组件。大多数Linux发行版以及NetBSD、OpenBSD和Mac OS X都集成了Python,可以在终端下直接运行Python。
应用范围:
有一些Linux发行版的安装器使用Python语言编写,比如Ubuntu的Ubiquity安装器,Red Hat Linux和Fedora的Anaconda安装器。
Gentoo Linux使用Python来编写它的Portage包管理系统。Python标准库包含了多个调用操作系统功能的库。
通过pywin32这个第三方软件包,Python能够访问Windows的COM服务及其它Windows API。
使用IronPython,Python程序能够直接调用.Net Framework。一般说来,Python编写的系统管理脚本在可读性、性能、代码重用度、扩展性几方面都优于普通的shell脚本。
python新手请教问题
class Admin:
admin = "111111"
password = "111111"
def login(self):
inputadmin = input("please input your number :\n")
if inputadmin != self.admin:
print("number error!")
return -1
inputpassword = input("please input your password :\n")
if inputpassword !=self.password:
print("password error!")
if __name__ == "__main__":
admin = Admin()
admin.login()
我居然还原了你的代码,没有发现问题哈:
有疑问可以交流。
补充:
上面的截屏是在Python3的环境下运行的,无误;但是在Python2的环境下,出现的报错跟你描述的一致。
python新手求助 写一个投票的代码 def vote() 有三种,yes,no,abstain
def vote(stra):
yesstr=['yes','y']
nostr=['no','n']
abstainedstr=['abstained','a']
count=0
yescount=0
stra=stra.replace(',',' ')
for i in stra.split():
lowerstr=i.lower()
if lowerstr in yesstr:
yescount+=1
count+=1
elif lowerstr in nostr:
count+=1
if yescount==count:
return 'proposal passes unanimously'
if yescount*1.0/count=2.0/3.0:
return 'proposal passes with super majority'
if yescount*1.0/count=0.5:
return 'proposal passes with simple majority'
return 'proposal fails'
if __name__=='__main__':
stra=raw_input('Enter the yes,no,abstained votes one by one and the press enter:\n')
print vote(stra)