python学习第1天-helloworld

Posted zze46

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习第1天-helloworld相关的知识,希望对你有一定的参考价值。

一、搭建python运行环境

 1、下载python安装包

 2、配置好环境变量,可参考此链接

二、第一个helloworld

技术分享图片
1 print ("helloworld");
View Code

三、练习

技术分享图片
1 add_age = 1;
2 name = input("your name:");
3 age = input("your age:");
4 print("name is "+name+";age is "+str(int(age)+add_age));
View Code

 

技术分享图片
1 true_num = 67;
2 input_num = int(input(">>:"));
3     if true_num==input_num:
4         print(true);
5     elif input_num>true_num:
6         print(try smaller)
7     else:
8         print(try bigger);
View Code

 

以上是关于python学习第1天-helloworld的主要内容,如果未能解决你的问题,请参考以下文章

Python学习第62天(css代码之1)

Python学习第10天_函数

python学习第26天

python学习第26天

python学习第1天——简介及入门

python学习第一周