[PYTHON] Julia Quick Note [08] Type de variable (Int, Float, Bool, Char, String)

Type de variable (Int, Float, Bool, Char, String) (Exemple d'écriture)

note08


◆ Type de numéro
 Int
  Int8
  Int16
  Int32
  Int64
  Int128
 UInt
  UInt8
  UInt16
  UInt32
  UInt64
  UInt128
 Float
  Float16
  Float32
Float64 → Cliquez ici pour les nombres réels généraux

◆ Type vrai / faux
 Bool

◆ Type de chaîne de caractères
 Char
 String

◆ Confirmation du type
 typeof()

Commentaire

Type int
Le type Int est un type entier signé, et il existe Int8, Int16, Int32, Int64, Int128.
Int8 est 8 bits, Int16 est 16 bits, ainsi que 32 bits, 64 bits et 128 bits.
UInt
Le type UInt
est un type entier non signé.
Bool
Le type booléen
est vrai ou faux.
Float
Le type
Float est une virgule flottante.
Type de chaîne
Char représente un type de caractère unique.
String représente le type de chaîne.
Confirmation du type de caractère ↓ ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/399135/803a99d6-0b4b-1894-0f0d-008802715318.png) Confirmation du type de chaîne ↓ ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/399135/c5b1b546-8622-9683-4dbf-e0226399a019.png)

Mokuji

Julia Quick Look Note [01] Comment utiliser les variables et les constantes Julia Quick Look Note [02] Arithmetic, Operator [Julia Quick Look Note [03] Complex] (https://qiita.com/ttabata/items/225c77a4d71fafc3e482) Julia Quick Look Note [04] Expression régulière [Note de dessin rapide de Julia [05] if statement] (https://qiita.com/ttabata/items/4f0bcff1e32f60402dfb) [Julia Quick Pull Note [06] Traitement en boucle] (https://qiita.com/ttabata/items/2a53825101b0b75fb589) [Julia Quick Pull Note [07] essayez, attrapez, enfin] (https://qiita.com/ttabata/items/1d6fe990526c99b65b5f) [Julia Quick Look Note [08] Types de variables (Int, Float, Bool, Char, String)] (https://qiita.com/ttabata/items/2b84a826e39bfe432b62) [Julia Quick Look Note [09] Function (1) Basics] (https://qiita.com/ttabata/items/d9b4f2728ec0dbcc6394)

(* Nous continuerons d'augmenter le contenu)

Informations connexes

: trombone: Julia --Page officielle https://julialang.org/

: trombone: Julia - Document officiel japonais https://julia-doc-ja.readthedocs.io/ja/latest/index.html

: trombone: Première fois Julia et installation (Windows et Linux) https://qiita.com/ttlabo/items/b05bb43d06239f968035

:paperclip: Julia - Mathematics https://docs.julialang.org/en/v1/base/math/

Opinions etc.

Si vous avez des opinions ou des corrections, veuillez nous en informer.

Recommended Posts

Julia Quick Note [08] Type de variable (Int, Float, Bool, Char, String)
Julia Quick Note [03] Complexe
Julia Quick Look Note [10] Fonction (2) Application
Julia Quick Note [05] instruction if
Julia Quick Note [04] Expression régulière
Julia Quick Look Note [09] Fonction (1) Bases
Julia Quick Note [07] essayez, attrapez, enfin
Julia Quick Note [02] Arithmétique, opérateur