writecode4
writecode4
WRITECODE4
16 posts
Don't wanna be here? Send us removal request.
writecode4 · 3 years ago
Video
youtube
JavaScript Arrays Simple
0 notes
writecode4 · 3 years ago
Photo
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
0 notes
writecode4 · 3 years ago
Photo
Tumblr media
0 notes
writecode4 · 3 years ago
Video
tumblr
0 notes
writecode4 · 3 years ago
Photo
Tumblr media
0 notes
writecode4 · 3 years ago
Photo
Tumblr media Tumblr media Tumblr media
Pandas for beginners
0 notes
writecode4 · 3 years ago
Photo
Tumblr media Tumblr media
0 notes
writecode4 · 3 years ago
Photo
Tumblr media
0 notes
writecode4 · 3 years ago
Photo
Tumblr media
0 notes
writecode4 · 3 years ago
Photo
Tumblr media
0 notes
writecode4 · 3 years ago
Photo
Tumblr media
In Python, the match case statement is more capable and enables more intricate pattern matching.
1 note · View note
writecode4 · 3 years ago
Photo
Tumblr media
0 notes
writecode4 · 3 years ago
Photo
Tumblr media
0 notes
writecode4 · 3 years ago
Text
Coercion / python
Tumblr media
During an operation with two arguments of the same type, the implicit conversion of one type's instance to another. For example, int(4.28) converts a floating point number to an integer 4.
   in[]    x = int(4.28)             print(x)  out[]    4
But in 4+2.8, each argument is of a different type (one int, one float), and both must be converted to the same type before they can be added, or a TypeError is raised. Without coercion, the programmer would have to normalize all arguments, even those of compatible types, to the same value, e.g., float(4)+4.5 instead of just 4+2.8.
   in[]    sum = (4 + 4.28)             print(sum) out[]    8.28
1 note · View note
writecode4 · 3 years ago
Photo
Tumblr media
1 note · View note
writecode4 · 3 years ago
Photo
Tumblr media
walk along the summit
1 note · View note