Python Basics

2021/7/10 12:06:29

本文主要是介绍Python Basics,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

These rules for putting operators and values together to form expressions are a fundamental part of Python as a programming language, just like the grammar rules that help us communicate.

[Python Tutor - Visualize Python]

Remember that expressions are just values combined with operators, and they always evaluate down to a single value. A data type,say,The Integer, Floating-Point, and String Data Types.–> int(), float()and str(’ '),

The Interger :-5,0,35, 1,2,3

Floating point:-0.25, 2.3, 1.75

Strings are like ‘a’, ‘bbb’, ‘Hello world!’, ‘5 dogs’ The single quote should be 2 in the begin and end of strings.If just type one,then it will shown SyntaxError: EOL while scanning string literal. Cuz (’) characters are the signals for Python to known the strings begins and ends.

The *operator can be used with only two numeric values (for multiplication), or one string value and one integer value (for string replication).

Storing Values in Variables,Imaging Variables as a store value box in computer’s memory.When a variable is assigned a new value, the old value is forgotten.

When name a variable,3 principle rules as follows:

1.It can be only one word with no spaces.

2.It can use only letters, numbers, and the underscore (_) character.

3.It can’t begin with a number.

(P.S. Variable names are case-sensitive that means WE,we,We are 3 difference variables.)

Tool: >>> interactive shell and file editor(or say text editors such as Notepad or TextMate)

The hash mark # is part of comments are use for recording the notes.

Different types of operators +, -, *, /, //, %, and **for math operations,

+and *for string operations.

When write a function name, the opening and closing parentheses() at the end identify it as the name of a function.such as print(),input(),and len() functions.

Extension of built-in functions check up->[Built-in Functions — Python 3.9.6 documentation]
i潜能开发ONELiving



这篇关于Python Basics的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程