Python学习第一周

Posted

tags:

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

  • 一、我的第一个程序

 

print("Hello word!")

 

  所以说python是一款非常简洁的语言,不像c,c++等等写一个简单的小程序还要调用一堆库。另外,python 3的版本支持中文编写。

 

 

  • 二、变量 的使用

          Python是一种动态的,强类型语言

name="fromzore"
print(name)

 

不用定义变量的类型,系统根据你输入的自动给变量定义

name="fromzore"
age=input("age");
pt2="%s你的年龄是%s"%(name,age)
print(pt2)

因为在input中,他默认你传入的是str类型,所以想用%d就需要强制转换

name="fromzore"
age=int(input("age"))
pt2="%s你的年龄是%d"%(name,age)
print(pt2)

无报错。

  • 三、循环

循环分为while循环和for循环,和c等语言的不同之处在于python的这些循环可以后接else语句

age=18
sum=0
while sum<3:
   count= int(input("age"))
   sum+=1
   if sum==count:
       print("you are right")
       break
   elif age<count:
       print("It is biger than age")
   elif age>count:
       print("It is smaller than age")
else:
    print("Multiple input errors")

结果是这样的

技术分享

for循环

for i in range(3):
   count= int(input("age"))
   sum+=1
   if sum==count:
       print("you are right")
       break
   elif age<count:
       print("It is biger than age")
   elif age>count:
       print("It is smaller than age")
else:
    print("Multiple input errors")

将while改为for结果是一样的。

ps:初次发博客有错误或是哪里写的不好,请多多指教。

 

以上是关于Python学习第一周的主要内容,如果未能解决你的问题,请参考以下文章

第一周:Python学习笔记

python学习笔记(第一周):变量

学习python的第一步,记住这些单词,一周就能上手敲代码

Python 学习第一周

Python学习之旅--第一周--初识Python

第一周Python学习7-30