1.
>>>print"l love Python" #2.0版本(又叫前妻版本)
>>>print("l love Python") #3.0版本(又叫小三版本)
2.
我们尝试点新的东西
>>>print (5+3)
或者直接输入
5+3
不妨再试试计算
5666646284264274*842574739487364
还可以尝试下
>>>print("well water" + "river") #相当于字符串的拼接
>>>print("well water" + str(8)) #强制字符输出(str)
如果是>>>print("well water" + 8) #这样则不行,不属于同一种类型
3.
先试试
>>>print("l love tianming" * 8) #输出字符串8此
和
>>>print("l love tianming\n" * 8) #换行输出字符串8此
既然乘法可以,我们不妨试试加法
>>>print("l love tianming" + 8) #加法不可行
4.
print("----------第一个小游戏-----------")
temp = input("不妨猜下我现在心里想的是那个数字")
guess = int(temp)
if guess == 520:
print("卧槽,你竟然猜对了!")
print("你是我心里的蛔虫吗?")
print("哼,猜对了也没有奖励!")
else:
print("猜错了,笨蛋!我现在心里想的是520!")
print("游戏结束,不玩了!")
5.
BIF(built-in functions)顾名思义,就是Erlang内建函数。他们通常用来完成那些无法用Erlang完成的任务。比如将列表转化为元素或者获取当前的时间和日期。完成这些操作的函数,我们称之为BIF。
BIF == Built - functions
>>>dir(__builtins__)
###这是内建函数###################*>>> dir(__builtins__)
['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning', 'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError', 'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False', 'FileExistsError', 'FileNotFoundError', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError', 'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError', 'ReferenceError', 'ResourceWarning', 'RuntimeError', 'RuntimeWarning', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'TimeoutError', 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'WindowsError', 'ZeroDivisionError', '__build_class__', '__debug__', '__doc__', '__import__', '__loader__', '__name__', '__package__', '__spec__', 'abs', 'all', 'any', 'ascii', 'bin', 'bool', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod', 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'exec', 'exit', 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'isinstance', 'issubclass', 'iter', 'len', 'license', 'list', 'locals', 'map', 'max', 'memoryview', 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', 'vars', 'zip']
>>> *#############################################这是内建函数###
>>>help(input)
#####input函数#################################*>>> help(input)
Help on built-in function input in module builtins:
input(...)
input([prompt]) -> string
Read a string from standard input. The trailing newline is stripped.
If the user hits EOF (Unix: Ctl-D, Windows: Ctl-Z+Return), raise EOFError.
On Unix, GNU readline is used if enabled. The prompt string, if given,
is printed without a trailing newline before reading.
>>> *###############################input函数#########
6.
小列子
>>>teacher = "tianming" #对变量进行赋值
>>>print(teacher) #输出的就是tianming
>>>firse = 3 #赋值使first等于3
>>>second = 8 #赋值使second等于8
>>>third = first + second #给third赋值使之等于first加second也就是3+8
>>>print(third) #输出的就是所赋的值相加
>>> myteacher = 'tianming' #赋值为tianming
>>> yourteacher = '没有老师' #赋值为没有老师
>>> ourteacher = myteacher + yourteacher #给ourteacher赋值为myteacher+yourteacher
>>> print(ourteacher) #输出的结果是tianming没有老师(赋值在相加!!!)
7.
需要注意的地方:
*在使用变量前,需要对其先赋值。
*变量名可以包括字母、数字、下划线,但变量名不能以数字开头。
*字母可以是大写或小写,但大小写是不同的。也就是说first和First对于Python来说是完全不相同的两个名字。
*等号(=)是赋值的意思,左边是名字,右边是值。千万不要写反!!!
>>> first = 'tian'
>>> First = 'ming'
>>> print(first + First) #输出tianming
8.
*到目前为止,我们所认识的字符串就是引号内的一切东西,我们也可以把字符串叫做文本,文本和数字是截然不同的。
例:
>>>5+8 #单纯的5+8等于13
>>>'5'+'8' #前面和后面组合,引号里面代表字符串。等于"58". #####注:这不是等于数字58,而是字符串58,所以带着""引号。
*要告诉Python你在创建一个字符串,就要在字符两边加上引号,可以是单引号也可以是双引号。
*Python女士表示不挑剔。但必须成对,不能一边单引号,另一边却花心的用双引号结尾。
9.
如果字符串中需要出现单引号或双引号怎么办?
例如我想打印字符串:Let's go!
有两种办法,第一种比较实用,就是我们的转义字符(\)对字符串的引号进行转义:
例如:Let\’s go! #直接输出是错误的,shell会认为你只输出了一个引号
>>> print("Let\' go!")
#########输出得到Let' go!
比我优秀百倍的人都在努力,我有什么理由不去努力学习。
在学习的道路上遇到任何疑问可以找我哦!python学习资料交流群:547464842 每天免费赠送学习视频
视视频链接:http://pan.baidu.com/s/1c0diG72 密码:z0qi