Python是一種非常流行的編程語言,它的簡單易學(xué)和功能強大特點深受廣大程序員的喜愛。本文將介紹一些Python課程中常用的代碼示例。
#1. 輸出Hello World print("Hello World") #2. 計算圓的面積 r = float(input("請輸入圓的半徑:")) area = 3.14 * r * r print("圓的面積為:", area) #3. 判斷閏年 year = int(input("請輸入年份:")) if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0): print(year, "是閏年") else: print(year, "不是閏年") #4. 使用for循環(huán)輸出1-10的數(shù)字 for i in range(1, 11): print(i, end=" ")
以上代碼示例可以幫助學(xué)習(xí)Python的人們快速掌握Python基礎(chǔ)知識,并能夠在實際開發(fā)中運用到所學(xué)知識。歡迎大家多加練習(xí),成為Python的高手!