码迷,mamicode.com
首页 > 编程语言 > 详细

python学习第1天-helloworld

时间:2018-08-19 10:58:57      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:put   world   hide   装包   python学习   opened   nload   spl   abc   

一、搭建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

标签:put   world   hide   装包   python学习   opened   nload   spl   abc   

原文地址:https://www.cnblogs.com/zze46/p/9499513.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!