1、创建任意一类项目,比如Maven项目
2、手动编写一个test.py的文件。
3、将test.py的文件放到src目录下。
4、在IDEA的编辑器中会提示Install plugin.(直接点击安装)
5、安装完成之后重启一下IDEA,再次创建项目的时候,会发现多出一项以下选项:
6、配置Project SDK
7、如果在上一步没有选择。在创建好项目之后,可以按照下面的方式进行设置项目的python.py
9、最后编写程序进行测试。代码如下:
"""
money =200
----------------
判断 money >500
打印 你是富人
判断 maoney > 300
打印 你是中产阶级
判断 maoney < 100
打印 你是屌丝
"""
money = 10
if money > 500:
print("你是富人")
if money > 300:
print("你是中产阶级")
if money < 100:
print("你是屌丝")
if money > 500:
print("你是富人")
elif money > 300:
print("你是中产")
else :
print("你是屌丝")
# list ,set ,map,tuple
#list = [1,2,3,4,5,6,7,8,9]
#通过range可以生成一个从0到100的数组
list = range(100)
for item in list:
print(item)
# map
# keyandvalue,keys,values
map = {"key1":"values1","key2":"values2"}
for item in map.items():
print(item[0],item[1])
for key in map.keys():
print(key)
for value in map.values():
print(value)
#set
set = (["1","2","3",4])
for item in set:
print(item)
#tuple
t = ("a","b","d",[1,2,3,4])
for item in t:
print(item)
#while
n = 0
while n <= 10:
print(n)
n += 1
##for循环100个数据,只想打印偶数
##打印到 48的终端for循环
##break
##continue跳过当前循环
for i in range(100):
if i % 2 == 0:
#如果下面用 continue,则不打印48
#如果下面用 break,者48以后的都不再带引了
if i == 48:
break
#continue
print(i)