python学习第1天-helloworld
Posted zze46
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习第1天-helloworld相关的知识,希望对你有一定的参考价值。
一、搭建python运行环境
2、配置好环境变量,可参考此链接
二、第一个helloworld
1 print ("helloworld");
三、练习
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));
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‘);
以上是关于python学习第1天-helloworld的主要内容,如果未能解决你的问题,请参考以下文章