Difference between revisions of "Casting"

From wikieduonline
Jump to navigation Jump to search
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 +
https://www.w3schools.com/python/python_casting.asp
 +
 
There may be times when you want to specify a type on to a variable. This can be done with casting.
 
There may be times when you want to specify a type on to a variable. This can be done with casting.
 +
 +
=== Example ===
  
 
  x = str(3)    # x will be '3'
 
  x = str(3)    # x will be '3'
Line 7: Line 11:
 
== Related ==
 
== Related ==
 
* [[Variables]]
 
* [[Variables]]
* [[Python]]
+
* [[Python: variables]]
  
 
== See also ==
 
== See also ==

Latest revision as of 11:29, 7 March 2022

Advertising: