python第一天---我要入个门
2019-07-24 09:25:57来源:博客园 阅读 ()
"""
一个用户登录的案例
"""
# 永远等待,直到用户输入值
# 变量
name_r = input("请输入用户名")
passwd = input("请输入密码:")
print(name_r)
print(passwd)
n1 = "root"
n2 = "user"
print(n1)
print(n2)
"""
变量只能有字母、数字、下划线组成
不能用数字开头,关键字也不能使用['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']
不要和python内置的东西重复
"""
"""
if基本语句
if条件:
内部代码块
else:
内部代码块
if支持嵌套
if 1==1:
if 2 == 2:
print()
else:
。。。
else:
。。。
if elif
inp = input(“第三方hi”):
if inp == “而无法收到”:
print
elif inp == “第三方”:
pass
elif inp == “第三方hi”:
pass
else:
pass
print()
pass 表示什么都不执行
"""
"""
8.基本数据类型
字符串(引号)
加法
n1 = “撒打算”
n2 = “撒打算”
n3 = n1 + n2
乘法
n1 = “撒打算”
n2 = n1 * 10
数字
age = 13
加、减、乘、除、取余、幂
a1 = 10
a2 = 20
a3 = a1 + a2
a4 = a1 - a2
a5 = a1 * a2
a6 = a1 / 10
a7 = a1 % a2 #a1 // a2 取商
a8 = a1 ** a2
判断奇偶数
a = 13
temp = a % 2
if temp == 0 :
print("o")
else:
print("1")
"""
"""
9 循环
while 1== 1 :
print(ok)
"""
# while 输出 1 2 3 4 5 6 8 9 10
count = 1
while count != 11 :
if count == 7:
pass
else:
print(count)
count = count + 1
# 2、求1-100的所有数的和
numb = 0
temp = 0
while numb <= 100:
temp = numb +temp
numb = numb + 1
print("1-100的所有数的和:",temp)
# 输出 1-100 内的所有偶数
numb = 0
while numb <= 100:
temp = numb % 2
if temp == 0:
print(numb)
else:
pass
numb = numb + 1
# 输出 1-100 内的所有奇数
numb = 0
while numb <= 100:
temp = numb % 2
if temp == 0:
pass
else:
print(numb)
numb = numb + 1
# 5、求1-2+3-4+5 ... 99的所有数的和
numb = 0
temp = 0
while numb <= 100:
t = numb % 2
if t == 0:
temp = temp - numb
else:
temp = temp + numb
numb = numb + 1
print("1-100的所有数的和:",temp)
# 6、用户登陆(三次机会重试)
# user:root passwd :123456
count1 = 0
while count1 < 3:
user_name = input("please write your name:")
passwd = input("your passwd:")
if user_name == 'root' and passwd == '123456' :
print("welcome in")
break
else:
print("error!agenin wirte")
count1 = count1 + 1
# 问题:公鸡5文钱一只,母鸡3文钱一只,小鸡3只一文钱,用100文钱买100只鸡,其中公鸡,母鸡,小鸡都必须要有,问公鸡,母鸡,小鸡要买多少只刚好凑足100文钱?
"""
5*公鸡 < 100
3*母鸡 < 100
1*小鸡 < 300
公鸡+母鸡+小鸡 = 1000
"""
for g in range(1, 21):
for m in range(1, 34):
for x in range(1, 301):
score = g * 5 + m * 3 + x / 3
if score == 100 and g + m + x == 100:
print('公鸡 %s 只,母鸡 %s 只,小鸡 %s 只' % (g, m, x))
演示结果:
请输入用户名wqe
请输入密码:wqe
wqe
wqe
root
user
1
2
3
4
5
6
8
9
10
1-100的所有数的和: 5050
0
2
4
6
8
10
12
14
16
18
20
22
24
26
28
30
32
34
36
38
40
42
44
46
48
50
52
54
56
58
60
62
64
66
68
70
72
74
76
78
80
82
84
86
88
90
92
94
96
98
100
1
3
5
7
9
11
13
15
17
19
21
23
25
27
29
31
33
35
37
39
41
43
45
47
49
51
53
55
57
59
61
63
65
67
69
71
73
75
77
79
81
83
85
87
89
91
93
95
97
99
1-100的所有数的和: -50
please write your name:root
your passwd:qwewqe
error!agenin wirte
please write your name:root
your passwd:123456
welcome in
公鸡 4 只,母鸡 18 只,小鸡 78 只
公鸡 8 只,母鸡 11 只,小鸡 81 只
公鸡 12 只,母鸡 4 只,小鸡 84 只
原文链接:https://www.cnblogs.com/network-chc/p/11210940.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash