python 的入门

2019-02-21 06:39:51来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

         时光匆匆,大一的时间过的很快,从大一上学期学的c开始,就感觉出c的结构很复杂,但是不可否认,学习c和汇编等涉及到系统底层知识才会有可能开发出属于自己知识产权的东西,然而,python以其简约性,丰富的库,流畅的语法结构等特点成为了18年最火的语言,当然这其中或多或少也有培训机构吹捧的功劳,于是决定入坑python,其中有大佬总结出一句话 “人生苦短,我用python!”好了,直接进入主题吧。

1,hello world 的编写

hello world是认识一个新语言的好办法,代码如下基于(python3.x):

print ("hello,world!")

print ("输入任意字符")

  结果:

  hello,world!

  输入任意字符

完全不需要引入什么库就能直接打印出结果,确实很简约。

 

print_r('helloworld!');
var_dump('helloworld!');
NSLog(@"helloworld!");
System.out.println("helloworld!");
console.log("helloworld!");
print("helloworld!");
printf("helloworld!");
cout << "helloworld!" << endl;
Console.WriteLine("helloworld!");
fmt.Println("helloworld!");
Response.Write("helloworld");
alert("helloworld!")
echo "helloworld!"
各式的hello world

 

 

 


原文链接:https://www.cnblogs.com/hxms/p/10411691.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:《python核心教程2》第九章 练习

下一篇:Python批量修改寄存器的值