Skip to content

Update type-conversion.md #62

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 21, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/type-conversion.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ Type conversion is a common requirement in programming, and both Python and Java

### Task

Assuming there is a hard disk with a capacity of 8192MB (as a string), please convert the capacity of this hard disk to the TB unit and save the conversion result in an integer variable.
Assuming there is a hard disk with a capacity of 8192MB (as a string), please convert the capacity of this hard disk to the GB unit and save the conversion result in an integer variable.

#### JavaScript implementation
```javascript
let gb = '8192MB';
let tb = parseInt(gb) / 1024
let intTb = parseInt(tb)
console.log(`The capacity of this hard disk is: ${intTb}TB`)
let mb = '8192MB';
let gb = parseInt(mb) / 1024
let intGb = parseInt(gb)
console.log(`The capacity of this hard disk is: ${intGb}GB`)
```
#### Python implementation
```python
gb = '8192MB'
int_tb = int(gb[:-2]) // 1024
print(f"The capacity of this hard disk is: {int_tb}TB")
mb = '8192MB'
int_gb = int(mb[:-2]) // 1024
print(f"The capacity of this hard disk is: {int_gb}GB")
```

### Code Highlight
Expand Down
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy