我是靠谱客的博主 平淡日记本,最近开发中收集的这篇文章主要介绍python周报第一周2.python基础知识,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

首次写博客,勿喷!以后无特殊声明都是在python3.5下操作。

1.python2和python3最基础的差异

1.print

python2和python3在新手看来最大的差别无异乎是print了,我分别演示下:

liukai@bogon:~$ python -V
Python 2.7.10
liukai@bogon:~$ python
Python 2.7.10 (default, Jul 14 2015, 19:46:27)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> a="haha"
>>> print a

haha

>>> print(a)
haha

===========================================

liukai@bogon:~$ python3 -V
Python 3.5.1
liukai@bogon:~$ python3
Python 3.5.1 (default, Jan 8 2016, 23:14:28)
[GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.72)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> a="haha"
>>> print(a)
haha
>>> print a
File "<stdin>", line 1
print a
^
SyntaxError: Missing parentheses in call to 'print'

总结:python3只支持print(),python2都支持。

2.input

root@lktest:~# python -V
Python 2.7.11
root@lktest:~# python
Python 2.7.11 (default, Jan 20 2016, 11:58:42)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-16)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> a=raw_input("input your number: ")
input your number: hello
>>> a
'hello'
>>> b=input("input your number: ")
input your number: hello
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<string>", line 1, in <module>
NameError: name 'hello' is not defined

================================================

root@lktest:~# python3
Python 3.5.1 (default, Jan 3 2016, 03:35:05)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-16)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> a=raw_input("input your number: ")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'raw_input' is not defined
>>> a=input("input your number: ")
input your number: hello
>>> a
'hello'

总结:用户输入函数,python2用raw_input(),python3用input()

2.python基础知识

1.数据类型

1.整型

root@lktest:~# python3
Python 3.5.1 (default, Jan 3 2016, 03:35:05)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-16)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> a=100
>>> a=-10
>>> a=0

2.浮点型

>>> b=1.23
>>> b=-1.1
>>> b=12.3e8

3.字符串

>>> c="hello"
>>> c="My God"
>>> c="abcn123"

4.布尔值

>>> d=True
>>> d=False
>>> 6>5
True
>>> 1>4
False

5.空值

空值用None表示,但是None  !=  0

6.变量

>>> e="hello"
>>> f=10
>>> print(e,f)
hello 10

未完待续...

 

转载于:https://www.cnblogs.com/Caesary/p/5473466.html

最后

以上就是平淡日记本为你收集整理的python周报第一周2.python基础知识的全部内容,希望文章能够帮你解决python周报第一周2.python基础知识所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(90)

评论列表共有 0 条评论

立即
投稿
返回
顶部