python入门
Posted 星空月零
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python入门相关的知识,希望对你有一定的参考价值。
借鉴:https://www.cnblogs.com/wupeiqi/articles/5433925.html
一.HelloWorld
print("HelloWorld")
二.编码
在python2中,系统默认的编码方式是:ASCII码。字母、标点和其他字符只使用一个字节来表示,但对于中文字符来说,一个字节满足不了需求,因此碰到中文的时候就会乱码。
在Python3中,对中文进行了全面的支持(Python3 把系统默认编码设置为 UTF-8)。
三、注释
单行注视:# 被注释内容
多行注释:""" 被注释内容 """
四.变量
变量定义的规则:
1.变量名只能是 字母、数字或下划线的任意组合
2.变量名的第一个字符不能是数字
3.以下关键字不能声明为变量名:
[\'and\', \'as\', \'assert\', \'break\', \'class\', \'continue\', \'def\', \'del\', \'elif\', \'else\', \'except\', \'exec\', \'finally\', \'for\', \'from\', \'global\', \'if\', \'import\', \'in\', \'is\', \'lambda\', \'not\', \'or\', \'pass\', \'print\', \'raise\', \'return\', \'try\', \'while\', \'with\', \'yield\']
五.条件语句
if
n1 = input(\'>>>\') if "raitorei" == "raitorei": n2 = input(\'>>>\') if n2 == "片": print(\'ライトレイ\') elif n2 == "平": print(\'つきれい\') else: print(\'月零\') else: print(\'error\')
六.习题
1、使用while循环输入 1 2 3 4 5 6 8 9 10
count = 1 while count < 11: print(count) count += 1
2、求1-100的所有数的和
number = 1 sum = 0 while number < 101: sum = sum + number number += 1 print(sum)
3、输出 1-100 内的所有奇数
number = 1 while number < 101: if number % 2 == 0: pass else: print(number) number += 1 print("---end---")
4、输出 1-100 内的所有偶数
number = 1 while number < 101: if number % 2 == 0: print(number) else: pass number += 1 print("---end---")
5、求1-2+3-4+5 ... 99的所有数的和
number = 1 sum = 0 while number < 101: if number % 2 == 0: sum = sum - number else: sum = sum + number number += 1 print(sum)
6、用户登陆(三次机会重试)
count = 0 c = 3 while count < 3: name = input(">>>") pwd = input(">>>") if name == "glj" and pwd == "123": print("登录成功") else: c -= 1 cc = str(c) print("账号密码错误请重新输入,还剩" + cc+ "次机会") count += 1 print("次数用完,当天不能登录,请联系管理员。")
以上是关于python入门的主要内容,如果未能解决你的问题,请参考以下文章