标签:简洁 计算 out main color style stdio.h cout logs
Python学习之路
从今天起开始写Python学习的经历了,哈哈.
了解Python是在我想入坑Linux运维这条路开始的.
我是计算机出身有着一定编程的功底,刚开始接触Python的时候觉得Python我学习过的c,c++特性完全不一样.觉得为什么这东西会这么智能
就拿Hello World来说
C:
1 #include<stdio.h> 2 3 void main() 4 { 5 printf("Hello World"); 6 }
C++:
1 #include<iostream> 2 using namespace std 3 4 int main() 5 { 6 cout << "Hello World" << endl; 7 }
Python:
1 print("Hello World")
比较三种,Python确实简洁不少,(并无黑c,c++的意思)
这是我第一个Python程序.哈哈,大多数人肯定都是Hello World吧!
标签:简洁 计算 out main color style stdio.h cout logs
原文地址:http://www.cnblogs.com/JackyPeng/p/6830321.html