TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #172 · 26 окт.

Метод строки isidentifier() поможет узнать, подходит ли данная строка в качестве имени объекта. Вполне может заменить самостоятельно придуманную регулярку. >>> 'some_name'.isidentifier() True Обычное имя переменной >>> '私は手紙です'.isidentifier() True Юникод в качестве имени тоже доступен >>> '1_name'.isidentifier() False Имя не может начинаться с цифры >>> '੬_name'.isidentifier() False Включая все цифры юникода >>> 'some name'.isidentifier() False Пробелы недопустимы #basic

Hashtags

Резултати

Пронајдени 1 слични објави

Пребарај: #computational

当前筛选 #computational清除筛选
djangoproject

@djangoproject · Post #533 · 21.12.2017 г., 14:21

http://greenteapress.com/wp/modsimpy/ Free Book: #Modeling and #Simulation in Python Modeling and Simulation in Python is an introduction to physical modeling using a #computational approach. It is organized in three parts: The first part presents discrete models, including a bikeshare system and world population growth. The second part introduces first-order systems, including models of infectious disease, thermal systems, and chemical kinetics. The third part is about second-order systems, including mechanical systems like projectiles, celestial mechanics, and rotating rigid bodies.