學習編程須要多加練習,敲代碼,下面開始咱們的Python學習之旅。
1.第一行代碼python
[root@zabbix_server ~]# ipython Python 3.6.8 (default, Apr 25 2019, 21:02:35) Type 'copyright', 'credits' or 'license' for more information IPython 7.8.0 -- An enhanced Interactive Python. Type '?' for help. In [1]: print("hello,world") hello,world
上述代碼表示進入ipython的交互式開發環境。編程
2.代碼擴展
print函數除了能夠輸出字符串以外,還能夠輸出變量、整數運算結果、布爾運算結果,代碼以下所示。ide
In [2]: str_1 = 'hello,world' In [3]: print(str_1) hello,world In [4]: str_1 Out[4]: 'hello,world' In [5]: print(1 + 1) 2 In [6]: print(True) True In [7]: print(True + False) 1
上述代碼分別定義了變量str_一、並使用print函數打印該變量,接着使用print打印輸出1 + 1的整數運算結果,而後使用print函數打印出布爾True的值,最後使用print函數輸出布爾True 和False的整數加運算結果。函數
總結:先對Python有最基礎的瞭解,而後上手練習,逐漸精進。學習