小白學python第一天打卡
前言:今天開始學習python的簡單程式碼,想與大家分享
第一題:輸入兩個整數輸入較大的數
第一種:
x,y=eval(input())
num_max=x
if x<y:
num_max=y
print("%d"%num_max)
第二種:
x,y=eval(input())
max=x
if x<y:
max=y
print("%d"%max)
第二題:輸入三個整數將其從小到大輸出(排序問題)
x,y,z=eval(input())
if x>y:
x,y=y,x
if x>z:
x,z=z,x
if y>z:
y,z=z,y
print("%d,%d,%d"%(x,y,z))
第三題:判斷給定的年份是否是閏年
year=eval(input())
if year%40 and year%100!=0 or year%4000:
print("%d是閏年"%year)
else:
print("%d不是閏年"%year)
第四題:猜數遊戲
import random
num=random.randint(1,5)
x=eval(input())
if x==num:
print("%d猜對了"%num)
else:
print(“猜錯了,正確數字%d”%num)
第五題:一個分段函式的程式
x=eval(input())
if x<1:
y=x
if x>=1 and x<10:
y=2x+1
if x>=10:
y=5x-17
print("%d"%y)
第六題:編寫程式,要求判別鍵盤輸入字元的型別
c=input(“input a character:”)
if c<‘32’:
print(“it is a contral character\n”)
if c>‘0’ and c<‘9’:
print(“it is a digit\n”)
if c>‘A’ and c<‘Z’:
print(“it is a capital\n”)
if c>‘a’ and c<‘z’:
print(“it is a lower letter”)
今天雖然學習的題很簡單,但也想與大家分享,開心!!!
相關文章
- 補打卡學習go第一天Go
- 新人小白第一天學JavaJava
- Python學習 day01打卡Python
- Python學習的第一天Python
- 小白學 Python(1):開篇Python
- python適合小白學嗎?Python
- 小白學python系列-(4)listPython
- 小白學python系列-(5) tuplePython
- 小白學python系列-(8)dictPython
- python學習 day018打卡 反射Python反射
- 每日學習打卡
- 小白學python遇到問題了.......Python
- 新手小白學Python有前途嗎?Python
- python 裝飾器小白學習Python
- 小白學python系列-(2)hello wordPython
- 小白學python系列-(7)迴圈Python
- 小白學python系列-(9)函式Python函式
- 再次前往python學習之路第一天Python
- 認真學習python的第一天Python
- 零基礎如何學Python?小白學Python需要多久?Python
- 小白能學好Python嗎?學費是多少?Python
- 小白學python-爬蟲常用庫Python爬蟲
- 來自小白的第一次C語言打卡C語言
- 天池python學習-task02打卡第五天Python
- Python入門_給小白的學習指南Python
- 小白學python系列-(6) 條件判斷Python
- 小白如何學習Python網路爬蟲?Python爬蟲
- python第一天Python
- Python發展方向有哪些 小白學Python難不難Python
- 小小白Python入門,陪你一起學PythonPython
- 【打卡學習python】-20200302Python
- Python打卡第九天Python
- Python打卡第八天Python
- 小白學 Python 爬蟲(25):爬取股票資訊Python爬蟲
- Python資料學習整理,小白們的福音Python
- 0基礎小白如何學習Python技術?Python
- 自學Python學習線路:小白果斷收藏Python
- 小白學python系列-(1)環境的安裝Python