Python 学习第一周

Posted hapen66

tags:

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

一、pycharm安装

https://www.cnblogs.com/dcpeng/p/9031405.html

二,代码联系

1、输入输出(明文):

  username = input("usrname:")

       password = input("password:")

  print(username,password)

2、输入输出(暗文):

 

import getpass ##输入的时候没有显示输入字符

 username = input("usrname:")

password = getpass.getpass("password:")
print(username,password)

 

3、验证输入的账号密码是否正确:

 

_username = ‘alex‘
_password = ‘abc123‘
username = input("username")
password = input(‘password:‘)
if _username == username and _password ==password:
print("Welcome user name login...".format(name=username))
else:
print("Invalid username or password!")

 4、猜年龄 if else 

age_of_oldboy = 56
guess_age = int(input("guess age:"))###输入必须为整数,不让报错
if guess_age == age_of_oldboy:
print("yes,you got it.")
elif guess_age > age_of_oldboy:
print("think smaller....")
else:
print("think bigger!")

5、while循环
count = 0
while True:
print("count:",count)
count = count+1
if count ==100:
break
输出0-99





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

第一周:Python学习笔记

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

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

Python 学习第一周

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

第一周Python学习7-30