标签:day bsp 小游戏 工具 width 开始 开发 break 输出
软件:python3、pycharm开发工具
python的开始:print("hello world") 注意:python3需要加上()
1、变量是什么:在程序运行过程中它的值是允许改变的量被称为变量
例如: a = 1
a = 2
b = a
a = 3
c = "smelond"
print(a, b, c)
输出结果:3 2 smelond
注意:b = a b指向的为2,而不是a,字符串需要加上" "
2、input输入函数
使用方法:name = input("Please input your name: ")
注意:在python2.7当中的输入函数为:raw_input("Please input your name:")
3、int整形:
使用方法:int(input("Please enter your age: "))
4、if_elif_else(如果_否者如果_否者):
a_g_e = 16
age = int(input("Please enter your age: "))
if age = a_g_e:
``````
elif age > a_g_e:
``````
else:
``````
4、一个猜年龄的小游戏:
用的到的语句:if_elif_else、for循环、continue、break
标签:day bsp 小游戏 工具 width 开始 开发 break 输出
原文地址:http://www.cnblogs.com/smelond/p/7821874.html