python初体验

Posted 7882-com

tags:

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

python第一次接触时感觉简洁明了,没有c语言烦多,第一课学了打印有关交互的知识。

‘‘‘username = input("userane:")
password = input("password:")
print(username,password)‘‘‘
name = input("name:")
age = input("age:")
job = input("job:")
salary = input("salary:")
info = ‘‘‘
------- info of %s ------
name:%s
age:%s
job:%s
salary:%s
‘‘‘ % (name,name,age,job,salary)
print(info)
第二课讲了一个猜年龄的
age_of_wo = 23
gessar_age = int(input("gessar age:"))
if gessar_age == age_of_wo :
print("yes,you got it.")
elif gessar_age > age_of_wo:
print("think bigger!")
else:
print("think small...")
print()
 
























以上是关于python初体验的主要内容,如果未能解决你的问题,请参考以下文章

Qt for Python 5.12初体验

2.跟老韩学Python之hello初体验

ChatGPT国内镜像站初体验:聊天Python代码生成等

ChatGPT国内镜像站初体验:聊天Python代码生成等

Python+Django(Python Web项目初体验)

python初体验-常见错误类型